1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- worker_processes 1;
- daemon off;
- events {
- worker_connections 1024;
- }
- http {
- include /data/etc/nginx/mime.types;
- sendfile on;
- gzip on;
- gzip_disable "MSIE [1-6]\.";
- gzip_vary on;
- gzip_proxied any;
- gzip_comp_level 6;
- gzip_buffers 16 8k;
- gzip_min_length 500;
- gzip_http_version 1.1;
- gzip_types text/plain text/xml text/javascript text/css text/comma-separated-values application/xml+rss application/xml application/x-javascript application/json application/javascript application/atom+xml;
- # Proxy upstream to the puma process
- upstream rails {
- server 127.0.0.1:3000;
- }
- # Proxy upstream to the node process
- upstream node {
- server 127.0.0.1:4000;
- }
- map $http_upgrade $connection_upgrade {
- default upgrade;
- '' close;
- }
- # Configuration for Nginx
- server {
- # Listen on port 8080
- listen 8080;
- keepalive_timeout 70;
- client_max_body_size 80M;
- root /app/public;
- add_header Strict-Transport-Security "max-age=31536000";
- location / {
- try_files $uri @rails;
- }
- # Proxy connections to rails
- location @rails {
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto https;
- proxy_set_header Proxy "";
- proxy_pass_header Server;
- proxy_pass http://rails;
- proxy_buffering off;
- proxy_redirect off;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection $connection_upgrade;
- tcp_nodelay on;
- }
- # Proxy connections to node
- location /api/v1/streaming {
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto https;
- proxy_set_header Proxy "";
- proxy_pass http://node;
- proxy_buffering off;
- proxy_redirect off;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection $connection_upgrade;
- tcp_nodelay on;
- }
- }
- error_page 500 501 502 503 504 /500.html;
- }
|