Sha256: 1cada333bff1da41a1800cb90133c3683a91b2ac4d58896913493eaf582fb5ed

Contents?: true

Size: 781 Bytes

Versions: 9

Compression:

Stored size: 781 Bytes

Contents

user  www-data;
worker_processes  2;

pid /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    passenger_root <%= scripts.ruby.info[:gem_dir] %>/passenger-3.0.7;
    passenger_ruby <%= scripts.ruby.info[:wrapper] %>;

    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    gzip on;
    gzip_buffers 16 8k;
    gzip_disable "MSIE [1-6]\.";
    gzip_proxied any;           
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
    
    client_max_body_size 100m;
    
    passenger_max_pool_size 20;
    passenger_max_instances_per_app 15;

    include  servers/*.conf;
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
standup-0.5.14 scripts/passenger/nginx.conf
standup-0.5.13 scripts/passenger/nginx.conf
standup-0.5.11 scripts/passenger/nginx.conf
standup-0.5.10 scripts/passenger/nginx.conf
standup-0.5.9 scripts/passenger/nginx.conf
standup-0.5.8 scripts/passenger/nginx.conf
standup-0.5.7 scripts/passenger/nginx.conf
standup-0.5.6 scripts/passenger/nginx.conf
standup-0.5.5 scripts/passenger/nginx.conf