Sha256: 0f5c3d8ce0cd31a25a564e93002a93b71b39357edd7383e8d42dce9d65ebdd81

Contents?: true

Size: 779 Bytes

Versions: 3

Compression:

Stored size: 779 Bytes

Contents

#user  nobody;
worker_processes  1;

pid /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    passenger_root /usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0;
    passenger_ruby /usr/local/bin/ruby;

    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 10;

    # standup place server fragments here
    # standup place server fragments here
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
standup-0.3.5 scripts/passenger/nginx.conf
standup-0.3.4 scripts/passenger/nginx.conf
standup-0.3.3 scripts/passenger/nginx.conf