Sha256: 74f0c0167b6f0ac1d6938e775d774e7a548f7abac1147597d79a5ef1b3e3c2bb
Contents?: true
Size: 631 Bytes
Versions: 8
Compression:
Stored size: 631 Bytes
Contents
upstream unicorn { server unix:<%= unicorn_socket %> fail_timeout=0; } server { listen 80 default deferred; # server_name example.com; root <%= current_path %>/public; location ^~ /assets/ { gzip_static on; expires max; add_header Cache-Control public; } try_files $uri/index.html $uri @unicorn; location @unicorn { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; proxy_pass http://unicorn; } error_page 500 502 503 504 /500.html; error_page 404 /404.html; client_max_body_size 4G; keepalive_timeout 10; }
Version data entries
8 entries across 8 versions & 1 rubygems