Skip to content

Instantly share code, notes, and snippets.

Created August 13, 2013 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/bb7eee660afd1fa70b61 to your computer and use it in GitHub Desktop.
Save anonymous/bb7eee660afd1fa70b61 to your computer and use it in GitHub Desktop.
Nginx.confworker_processes 1; user www-data www-data; pid /usr/local/nginx/logs/nginx.pid; error_log /usr/local/nginx/logs/error.log; events { worker_connections 1024; accept_mutex off; } http { include mime.types; default_type application/octet-stream; access_log /usr/local/nginx/logs/access.log combined; sendfile on; tcp_nopush on; tcp_nodelay…
location /{
try_files $uri $uri/ @ses;
}
location @ses{
rewrite ^/index.cfm/$uri last;
}
# client_max_body_size 4G;
# keepalive_timeout 5;
# Main Railo proxy handler
location ~ \.(cfm|cfml|cfc|jsp|cfr)(.*)$ {
proxy_pass http://127.0.0.1:8888;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
#proxy_set_header Host $http_host;
}
# Unicorn info
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;
upstream unicorn {
server unix:/tmp/unicorn.modelesprit.sock fail_timeout=0;
}
server {
listen 80;
server_name www.modelesprit.com modelesprit.com;
root /srv/www/modelesprit.com/public;
index index.cfm;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
access_log /srv/logs/nginx/modelesprit.com-access.log;
location = /favicon.ico { access_log off; log_not_found off; }
location ~ /\. { access_log off; log_not_found off; deny all; }
#Unicorn connector
include /usr/local/nginx/conf/unicorn_connector.conf;
#Railo connector
include /usr/local/nginx/conf/railo_connector.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment