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.1.17 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.16 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.15 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.14 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.13 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.11 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.10 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.9 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.8 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.7 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.6 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.5 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.4 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.3 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.2 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.1 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.1.0 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.29 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.28 lib/magic_recipes/templates/nginx_thin.erb
magic_recipes-0.0.27 lib/magic_recipes/templates/nginx_thin.erb