123456789101112131415161718192021 |
- pid /tmp/nginx.pid;
- error_log stderr error;
- events {
- worker_connections 8192;
- }
- http {
- access_log off;
- include nginx.upstream.conf;
- server {
- listen 8080;
- location / {
- fastcgi_pass mono;
- include /etc/nginx/fastcgi_params;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- }
- }
- }
|