Advertisement
Guest User

nginx.conf

a guest
Aug 6th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. worker_processes 1;
  2.  
  3. user www-data www-data;
  4. pid /var/run/nginx.pid;
  5. error_log /tmp/nginx.error.log;
  6.  
  7. events {
  8. worker_connections 1024;
  9. accept_mutex off;
  10. }
  11.  
  12.  
  13. http {
  14. include mime.types;
  15.  
  16. default_type application/octet-stream;
  17. access_log /tmp/nginx.access.log combined;
  18. sendfile on;
  19. types_hash_max_size 2048;
  20.  
  21. upstream erpnext {
  22. server 127.0.0.1:8000 fail_timeout=0;
  23. }
  24.  
  25. include /etc/nginx/conf.d/*.conf
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement