nginx.conf.libevent 340 B

123456789101112131415161718192021222324
  1. # worker_processes n;
  2. pid /tmp/nginx.pid;
  3. error_log stderr error;
  4. events {
  5. worker_connections 8192;
  6. }
  7. http {
  8. access_log off;
  9. #upstream mono {
  10. # server 127.0.0.1:9001;
  11. #}
  12. include nginx.upstream.conf;
  13. server {
  14. listen 8080;
  15. location / {
  16. proxy_pass http://mono;
  17. }
  18. }
  19. }