nginx.conf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. user nginx;
  2. worker_processes 1;
  3. error_log /var/log/nginx/error.log warn;
  4. pid /var/run/nginx.pid;
  5. events {
  6. worker_connections 1024;
  7. }
  8. http {
  9. include /etc/nginx/mime.types;
  10. default_type application/octet-stream;
  11. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  12. '$status $body_bytes_sent "$http_referer" '
  13. '"$http_user_agent" "$http_x_forwarded_for"';
  14. access_log /var/log/nginx/access.log main;
  15. sendfile on;
  16. #tcp_nopush on;
  17. keepalive_timeout 65;
  18. gzip on;
  19. upstream backend {
  20. server unix:/app/ggsh.sock;
  21. }
  22. server {
  23. listen 80;
  24. server_name localhost;
  25. location /api {
  26. proxy_pass http://backend/;
  27. }
  28. location / {
  29. root /usr/share/nginx/html;
  30. index index.html index.htm;
  31. }
  32. error_page 500 502 503 504 /50x.html;
  33. location = /50x.html {
  34. root /usr/share/nginx/html;
  35. }
  36. }
  37. }