Nginx 설치 후 기본 nginx.conf 설정 값
·
IT/Nginx
nginx(v1.24) 설치 후 /etc/nginx/nginx.conf 의 기본 설정 값입니다 user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_a..