Skip to main content

Nginx Config Generator

Dev Productivity

Generate nginx server block configs for static sites, reverse proxies, load balancers, and SSL redirects.

server { listen 80; server_name example.com; gzip on; gzip_types text/plain text/css application/json application/javascript text/xml; root /var/www/html; index index.html index.htm; location / { try_files $uri $uri/ =404; } }