Nginx 설정 생성기
서버 블록 설정을 폼으로 생성합니다.
nginx.conf
server {
listen 80;
server_name example.com;
root /var/www/html;
client_max_body_size 10M;
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml image/svg+xml;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri $uri/ =404;
}
}Related Tools
📋JSON Formatter
Format & validate JSON🗄️SQL Formatter
Format SQL queries🔄YAML ↔ JSON
Convert YAML & JSON📝Markdown Preview
Live markdown editor