Nginx Config Generator

Generate nginx server block configuration from simple form inputs.

Nginx Config Generator

server {
    listen 80;
    server_name example.com;
    root /var/www/html;
    index index.html index.htm;

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

Related Tools

About this tool

Generate nginx server block configuration from simple form inputs.