Sha256: 453896cf103de979b57ceb02bf672d760799fa988f89ef8967c5717e3f34325b

Contents?: true

Size: 1.99 KB

Versions: 2

Compression:

Stored size: 1.99 KB

Contents

upstream <%= application %> {
  server unix:/tmp/<%= application %>.sock fail_timeout=0;
}

<% if nginx_use_ssl %>
server {
  listen 80;
  server_name <%= nginx_server_name %>;
  return 301 https://<%= nginx_server_name %>$request_uri;
}
<% end %>

server {
<% if nginx_use_ssl %>
  listen 443;
  ssl on;
  ssl_certificate /etc/ssl/certs/<%= nginx_ssl_certificate %>;
  ssl_certificate_key /etc/ssl/private/<%= nginx_ssl_certificate_key %>;
<% else %>
  listen 80;
<% end %>

  server_name <%= nginx_server_name %>;
  root <%= current_path %>/public;
  try_files $uri/index.html $uri @<%= application %>;

  location @<%= application %> {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;
<% if nginx_use_ssl %>
    proxy_set_header X-Forwarded-Proto https;
<% end %>
    proxy_pass http://<%= application %>;
    # limit_req zone=one;
    access_log <%= shared_path %>/log/nginx.access.log;
    error_log <%= shared_path %>/log/nginx.error.log;
  }

  location ~ ^/(assets|images|javascripts|stylesheets|swfs|system)/ {
    gzip_static on;
    expires max;
    add_header Cache-Control public;
    add_header Last-Modified "";
    add_header ETag "";

    open_file_cache max=1000 inactive=500s;
    open_file_cache_valid 600s;
    open_file_cache_errors on;
    break;
  }

  client_max_body_size 4G;

  keepalive_timeout 120;
  proxy_connect_timeout 120;
  proxy_read_timeout 120;

  error_page 500 502 504 /500.html;
  error_page 503 @503;

  location = /50x.html {
    root html;
  }

  location = /404.html {
    root html;
  }

  location @503 {
    error_page 405 = /system/maintenance.html;
    if (-f $document_root/system/maintenance.html) {
      rewrite ^(.*)$ /system/maintenance.html break;
    }
    rewrite ^(.*)$ /503.html break;
  }

  if ($request_method !~ ^(GET|HEAD|PUT|POST|DELETE|OPTIONS)$ ){
    return 405;
  }

  if (-f $document_root/system/maintenance.html) {
    return 503;
  }

  location ~ \.(php|html)$ {
    return 405;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kapify-0.1.1 lib/generators/kapify/nginx/templates/nginx_conf.erb
kapify-0.1.0 lib/generators/kapify/nginx/templates/nginx_conf.erb