A showcase of completed projects demonstrating my skills in IT, development, automation, and problem-solving.
Personal Website
Deployed a secure, lightweight NGINX web server with Cloudflare SSL, UFW hardening, and modular structure for public documentation hosting.
Deployed on Debian with NGINX as reverse proxy and static file server
SSL termination handled via Cloudflare Origin Certificates
UFW configured to allow only HTTP/HTTPS and SSH (from whitelisted IPs)
Custom logging setup for access and error monitoring
Site content organized for future Markdown-based documentation
Static files served directly via NGINX with optimized caching headers
Modular design for easy addition of dynamic services or routing
DNS and security settings fully managed through Cloudflare
# NGINX server block
server {
listen 80;
server_name example.com;
location / {
root /var/www/html;
index index.html index.htm;
}
}