Sha256: c42ce95f5984625b64a7587efb58271c4eaa629103c70d04e65842eb7a4cf3b1

Contents?: true

Size: 608 Bytes

Versions: 9

Compression:

Stored size: 608 Bytes

Contents

upstream unicorn {
  server unix:/tmp/unicorn.htc.sock fail_timeout=0;
}

server {
  listen 80 default deferred;
  # server_name example.com;
  root /home/deploy/htc/current/public;

  location ^~ /assets/ {
    gzip_static on;
    expires max;
    add_header Cache-Control public;
  }

  try_files $uri/index.html $uri @unicorn;
  location @unicorn {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;
    proxy_pass http://unicorn;
  }

  error_page 500 502 503 504 /500.html;
  client_max_body_size 4G;
  keepalive_timeout 10;
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
unicorn_deployer-0.0.1.9 config/nginx.conf
unicorn_deployer-0.0.1.8 config/nginx.conf
unicorn_deployer-0.0.1.7 config/nginx.conf
unicorn_deployer-0.0.1.6 config/nginx.conf
unicorn_deployer-0.0.1.5 config/nginx.conf
unicorn_deployer-0.0.1.4 config/nginx.conf
unicorn_deployer-0.0.1.3 config/nginx.conf
unicorn_deployer-0.0.1.2 config/nginx.conf
unicorn_deployer-0.0.1.1 config/nginx.conf