Build Nginx configuration files without memorizing directives. Visual server blocks, location rules, proxy_pass, SSL, and caching. Start from templates for common setups.
Build nginx.conf visually. Configure server blocks, location rules, SSL, gzip, and caching. Start from templates or build from scratch.
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";
}
}