Sha256: c0af62dbaa6c79a51755ed806d09129c5e7a37c0caf80a409330141e6abb168a

Contents?: true

Size: 538 Bytes

Versions: 2

Compression:

Stored size: 538 Bytes

Contents

worker_processes  1;

events {
  worker_connections  1024;
}

server {
  listen 80;  #default deferred;
  server_name .color-mont.com;
  root        /home/deployer/apps/app/public;
  error_log   /home/deployer/apps/app/log/nginx-error.log;

  passenger_enabled on;
  passenger_friendly_error_pages on;

  location = /favicon.ico {
    log_not_found off;
    access_log    off;
  }

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

  client_max_body_size 1G;
  keepalive_timeout 20;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lux-fw-0.1.35 ./bin/txt/nginx.conf
lux-fw-0.1.17 ./bin/txt/nginx.conf