karim_app/config/nginx.conf
Nicolas Bally b6476dcaf8 suite
2018-06-11 02:33:54 +02:00

32 lines
799 B
Nginx Configuration File

upstream karim_app_unicorn {
server unix:/srv/www/web/karim_app/shared/tmp/unicorn.sock fail_timeout=0;
}
server {
listen [::]:80;
server_name karimpresident.net ;
root /srv/www/web/karim_app/current/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://karim_app_unicorn;
proxy_read_timeout 6000;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
server {
listen [::]:80;
server_name www.karim.quartz.xyz karim.quartz.xyz www.karimpresident.org karimpresident.org www.karimpresident.net allezkarim.com www.allezkarim.com;
rewrite ^(.*) http://karimpresident.org$1 permanent;
}