Nginx 설정 생성기
리버스 프록시, SSL, 정적 사이트용 Nginx 설정을 생성합니다.
Preset Templates
Server Settings
Logging
SSL / TLS
Enable SSL (HTTPS)
Features
Gzip Compression
Security Headers
CORS Headers
Generated Nginx Configuration
server { listen 80; listen [::]:80; server_name example.com; root /var/www/html; index index.html index.htm; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; client_max_body_size 10m; # Security headers add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Content-Type-Options "nosniff" always; add_header X-XSS-Protection "1; mode=block" always; add_header Referrer-Policy "no-referrer-when-downgrade" always; # Gzip compression gzip on; gzip_vary on; gzip_proxied any; gzip_comp_level 6; gzip_min_length 256; gzip_types text/plain text/css text/javascript application/json application/javascript application/xml application/xml+rss image/svg+xml; location / { try_files $uri $uri/ =404; } # Cache static assets location ~* \.(css|js|jpg|jpeg|png|gif|ico|svg|woff|woff2|ttf|eot)$ { expires 30d; add_header Cache-Control "public, immutable"; } }
What is an Nginx Config Generator?
An Nginx config generator creates production-ready server configuration files with proper security headers, SSL, and reverse proxy settings.
이 도구 평가
4.4 / 5 · 134 개 평가
최신 소식 받기
주간 개발 팁과 새 도구 알림을 받으세요.
스팸 없음. 언제든 구독 해지 가능.
Enjoy these free tools?
☕Buy Me a CoffeeHow to Use
- Select server type (reverse proxy, static, etc.)
- Configure domain and ports
- Enable SSL and security options
- Copy the generated config
Use Cases
- Setting up reverse proxy
- Configuring SSL/HTTPS
- Serving static websites
- Load balancing setup