Generate production-ready nginx.conf for reverse proxy, SSL/TLS, load balancing, rate limiting, and static hosting.
upstream app_backend {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://app_backend;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}Need more than a template?
From CI/CD and Kubernetes to cloud reliability, get hands-on delivery for your infrastructure goals.
DevOps Services →