Sha256: c9c66cd906d476f1619b30453229dee85813fc93e1f0e1b90f67415206fa82a4

Contents?: true

Size: 1.87 KB

Versions: 43

Compression:

Stored size: 1.87 KB

Contents

daemon off;
worker_processes  4;
events {
    worker_connections  8192;
  }
  http {
    passenger_root /Users/i0n/.rvm/gems/ruby-1.9.2-head/gems/passenger-2.2.11;
    passenger_ruby /Users/i0n/.rvm/bin/passenger_ruby;
    include       mime.types;
    default_type  application/octet-stream;
    keepalive_timeout  65;
   	gzip  on;
		gzip_http_version 1.1;
		gzip_vary on;
		gzip_comp_level 6;
		gzip_proxied any;
		gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
		
    server {
        listen       80  default;
        server_name  _;
        return       444;
    }       
				
		server {
	    listen 80;
	    server_name test_haml.local;
	    rails_env development;
			client_max_body_size 10M;
			client_body_buffer_size 128k;
			location / {
				passenger_enabled on;
				root /Users/i0n/Sites/test_haml/public;
			}
		}		
		server {
	    listen 80;
	    server_name test_rails_3.local;
	    rails_env development;
			client_max_body_size 10M;
			client_body_buffer_size 128k;
			location / {
				passenger_enabled on;
				root /Users/i0n/Sites/test_rails_3/public;
			}
		}		
		
		server {
	    listen 80;
	    server_name test_rails.local;
	    rails_env development;
			client_max_body_size 10M;
			client_body_buffer_size 128k;
			location / {
				passenger_enabled on;
				root /Users/i0n/Sites/test_rails/public;
			}
		}		
		
		server {
	    listen 80;
	    server_name test_rspec.local;
	    rails_env development;
			client_max_body_size 10M;
			client_body_buffer_size 128k;
			location / {
				passenger_enabled on;
				root /Users/i0n/Sites/test_rspec/public;
			}
		}		
    server {
	    listen 80;
	    server_name test_sinatra.local;
			client_max_body_size 10M;
			client_body_buffer_size 128k;
			location / {
				passenger_enabled on;
				root /Users/i0n/Sites/test_sinatra/public;
			}
		}				
}

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
jumpstart-0.6.5 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.6.4 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.6.3 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.6.2 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.6.1 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.6.0 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.5.4 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.5.3 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.5.2 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.5.1 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.5.0 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.4.0 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.9 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.8 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.7 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.6 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.5 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.4 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.3 test/fake_nginx_path/local_nginx_1.conf
jumpstart-0.3.2 test/fake_nginx_path/local_nginx_1.conf