Sha256: fa16d9385127e8c9e546966096b1535193f02a8b36413403f7415e30b570a98e
Contents?: true
Size: 664 Bytes
Versions: 3
Compression:
Stored size: 664 Bytes
Contents
root /u/apps/{{project_name}}/current/public; try_files $uri/index.html $uri @app; location @app { proxy_pass http://app; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; # pass the upgrade headers so websockets work proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_redirect off; } location /cable { proxy_pass http://app; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } error_page 500 502 503 504 /500.html; client_max_body_size {{client_max_body_size}}; keepalive_timeout 10;
Version data entries
3 entries across 3 versions & 1 rubygems