nginx.conf 377 B

123456789101112131415161718192021
  1. pid /tmp/nginx.pid;
  2. error_log stderr error;
  3. events {
  4. worker_connections 8192;
  5. }
  6. http {
  7. access_log off;
  8. include nginx.upstream.conf;
  9. server {
  10. listen 8080;
  11. location / {
  12. fastcgi_pass mono;
  13. include /etc/nginx/fastcgi_params;
  14. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  15. }
  16. }
  17. }