Sha256: bd0a11d151ac703c9f7164032ee3a00c9367004f288089a92be9bd46bee0941a
Contents?: true
Size: 676 Bytes
Versions: 1
Compression:
Stored size: 676 Bytes
Contents
upstream unicorn { server unix:/tmp/unicorn.<%= application %>.sock fail_timeout=0; } server { listen 80; <% unless configs['domain_name'].blank? %> server_name *.<%= configs['domain_name'] %> <% end -%> 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; client_max_body_size 4G; keepalive_timeout 10; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nubis_rails_boilerplate-0.0.10 | lib/capistrano_recipes/templates/nginx_unicorn.erb |