Sha256: 60f405569ee77cd4b53101015e6f2569dc21282e677244b06701eef5db93bf3a

Contents?: true

Size: 1.32 KB

Versions: 36

Compression:

Stored size: 1.32 KB

Contents

upstream puma {
  server unix:/<%= fetch(:deploy_to) %>/shared/tmp/sockets/puma.sock fail_timeout=0;
}

server {
  listen 80 default deferred;
  root <%= fetch(:deploy_to) %>/current/public;

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

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

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

<% if fetch(:enable_ssl) %>
server {
  listen 443 default deferred;
  root <%= fetch(:deploy_to) %>/current/public;

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

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

  error_page 500 502 503 504 /500.html;
  client_max_body_size 4G;
  keepalive_timeout 10;
  ssl on;
  ssl_certificate <%= fetch(:deploy_to) %>/shared/ssl_cert.crt;
  ssl_certificate_key <%= fetch(:deploy_to) %>/shared/ssl_private_key.key;
}#
<% end %>

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
teleporter-2.0.8 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.7 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.6 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.4 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.2 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.1 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-2.0.0 lib/generators/teleport/templates/capistrano/shared/nginx.conf.erb
teleporter-1.2.4 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.2.3 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.2.2 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.2.1 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.1.1 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.1.0 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.0.2 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.0.1 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-1.0.0 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-0.1.0 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-0.0.34 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-0.0.33 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb
teleporter-0.0.32 lib/generators/initial/templates/capistrano/shared/nginx.conf.erb