the IT Hustle
ToolsPricingBlogAbout

Nginx Config Generator

Build Nginx configuration files without memorizing directives. Visual server blocks, location rules, proxy_pass, SSL, and caching. Start from templates for common setups.

Nginx Config Generator

Build nginx.conf visually. Configure server blocks, location rules, SSL, gzip, and caching. Start from templates or build from scratch.

Templates
Server Block
Listen Port
Server Name
Root
Location Blocks (2)
Location 1
Path
Type
Try Files
Location 2
Path
Type
nginx.conf
server {
    listen 80;
    server_name example.com;
    root /var/www/html;
    access_log /var/log/nginx/access.log;

    gzip on;
    gzip_types text/plain text/css application/json application/javascript text/xml;
    gzip_min_length 1000;

    location / {
        try_files $uri $uri/ =404;
    }

    location /assets/ {
        autoindex off;
        expires 365d;
        add_header Cache-Control "public, immutable";
    }

}