Loading tool...
Loading tool...
Generate Nginx server configurations visually — reverse proxy, SSL, caching, security headers, and custom locations.
server { listen 80; server_name example.com; root /var/www/html; index index.html index.htm; gzip on; gzip_vary on; gzip_min_length 1024; gzip_types text/plain text/css application/json application/javascript text/xml application/xml text/javascript image/svg+xml; }
13 lines · 301 bytes