2
nginx는 아무것도 기록하지 않습니다
nginx와 함께 FreeBSD 9-Stable 서버를 실행하고 있습니다. 내 구성은 다음과 같습니다. user www www; worker_processes 5; error_log /var/log/nginx/nginx-error.log; events { worker_connections 1024; } http { include mime.types; include fastcgi_params; index index.html index.htm index.php; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] $status ' '"$request" $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; sendfile …