Sha256: 23dfef35f1a5c1132d1d78496185fb32beb654e632428bc4e2718361edd935c4

Contents?: true

Size: 1.82 KB

Versions: 43

Compression:

Stored size: 1.82 KB

Contents

user www-data;
worker_processes  10;
error_log /opt/nginx/logs/error.log;
pid /opt/nginx/logs/nginx.pid;
events { worker_connections  1024; }
http {
    include       mime.types;
    default_type application/octet-stream;
    access_log /var/log/nginx/access.log;
    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    tcp_nodelay on;
    passenger_root /usr/local/lib/ruby/gems/1.9.1/gems/passenger-2.2.11;
    passenger_ruby /usr/local/bin/ruby;
    
    server {
        listen 80;
        server_name  testomatic_app_1.com;
        rails_env production;
        gzip on;
        gzip_proxied any;
        gzip_vary on;
        gzip_disable 'MSIE [1-6]\.';
        gzip_http_version 1.1;
        gzip_min_length 10;
        gzip_comp_level 9;
        gzip_types text/plain application/xhtml+xml text/css application/x-javascript text/xml application/xml;
        location / {
                root /home/i0n/sites/testomatic_app_1/current/public/;
                passenger_enabled on;
                if ($request_filename ~ '.+\.(jpg|jpeg|gif|css|png|js|ico|html)$') { access_log off; expires 30d; }
        }
    }
    server {
        listen 80;
        server_name www.testomatic_app_1.com;
        rewrite   ^  http://testomatic_app_1.com$request_uri?;
        rails_env production;
        gzip on;
        gzip_proxied any;
        gzip_vary on;
        gzip_disable 'MSIE [1-6]\.';
        gzip_http_version 1.1;
        gzip_min_length 10;
        gzip_comp_level 9;
        gzip_types text/plain application/xhtml+xml text/css application/x-javascript text/xml application/xml;
        location / {
                root /home/i0n/sites/testomatic_app_1/current/public/;
                passenger_enabled on;
                if ($request_filename ~ '.+\.(jpg|jpeg|gif|css|png|js|ico|html)$') { access_log off; expires 30d; }
        }
    } 
}

Version data entries

43 entries across 43 versions & 1 rubygems

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