64 lines
1.9 KiB
Nginx Configuration File
64 lines
1.9 KiB
Nginx Configuration File
# For more information on configuration, see:
|
|
# * Official English Documentation: http://nginx.org/en/docs/
|
|
# * Official Russian Documentation: http://nginx.org/ru/docs/
|
|
|
|
user nginx;
|
|
worker_processes auto;
|
|
error_log /var/log/nginx/error.log;
|
|
pid /run/nginx.pid;
|
|
|
|
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
|
|
include /usr/share/nginx/modules/*.conf;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 10;
|
|
types_hash_max_size 2048;
|
|
# server_tokens off;
|
|
|
|
client_body_buffer_size 128k;
|
|
client_header_buffer_size 10k;
|
|
client_max_body_size 10m;
|
|
large_client_header_buffers 4 256k;
|
|
|
|
# 아래부터 버그 해결을 위해 추가해 주실 옵션입니다.
|
|
# 502 에러를 없애기 위한 proxy 버퍼 관련 설정입니다.
|
|
proxy_buffer_size 128k;
|
|
proxy_buffers 4 256k;
|
|
proxy_busy_buffers_size 256k;
|
|
|
|
# 502 에러를 없애기 위한 fastcgi 버퍼 관련 설정입니다.
|
|
fastcgi_buffering on;
|
|
fastcgi_buffer_size 16k;
|
|
fastcgi_buffers 16 16k;
|
|
|
|
# 최대 timeout 설정입니다.
|
|
fastcgi_connect_timeout 600s;
|
|
fastcgi_send_timeout 600s;
|
|
fastcgi_read_timeout 600s;
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
# Load modular configuration files from the /etc/nginx/conf.d directory.
|
|
# See http://nginx.org/en/docs/ngx_core_module.html#include
|
|
# for more information.
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|
|
|