Sha256: 42a57bb560035092cf161718bbe0f86f865c0f1e9ed297e2e07fa9bed03b26ca

Contents?: true

Size: 744 Bytes

Versions: 46

Compression:

Stored size: 744 Bytes

Contents

upstream thin_<%= app_name %>_cluster {
	<% app_instances.to_i.times do |i| %>
	server unix:/tmp/thin.<%= app_name %>.<%= i %>.sock;<% end %>
	
}

server {
	listen 80<%= ' default deferred' if default_site %>;
	server_name <%= domains.join("\n                ") %>;
                
	root   <%= current_path %>/public;
	
	try_files $uri/index.html $uri @thin_<%= app_name %>;
		location @thin_<%= app_name %> {
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header Host $http_host;
		proxy_redirect off;
		proxy_pass http://thin_<%= app_name %>_cluster;
	}

	location ^~ /assets/ {
		gzip on;
		expires max;
		add_header Cache-Control public;
	}
	
	error_page 500 502 503 504 /500.html;
	client_max_body_size 4G;
}

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
magic_recipes-0.0.26 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.25 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.24 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.23 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.22 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.21 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.20 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.19 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.18 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.17 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.16 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.15 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.14 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.13 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.12 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.11 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.10 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.9 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.8 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.7 lib/magic_recipes/templates/nginx_thin.erb