60 lines
1.4 KiB
Nginx Configuration File
60 lines
1.4 KiB
Nginx Configuration File
upstream ballalama3_app_unicorn {
|
|
server unix:/srv/www/web/ballalama3_app/shared/unicorn.sock fail_timeout=0;
|
|
}
|
|
|
|
|
|
server {
|
|
|
|
listen [::]:443 ssl;
|
|
|
|
server_name ballalama.com;
|
|
root /srv/www/web/ballalama3_app/current/public;
|
|
|
|
ssl on;
|
|
ssl_certificate /etc/letsencrypt/live/ballalama.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/ballalama.com/privkey.pem;
|
|
|
|
|
|
try_files $uri/index.html $uri @unicorn;
|
|
|
|
#access_log /var/log/nginx/YOUR_APP_NAME_access.log combined;
|
|
#error_log /var/log/nginx/YOUR_APP_NAME_error.log;
|
|
|
|
location @unicorn {
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://ballalama3_app_unicorn;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
}
|
|
|
|
error_page 500 502 503 504 /500.html;
|
|
client_max_body_size 4G;
|
|
keepalive_timeout 10;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
}
|
|
|
|
server {
|
|
listen [::]:443 ssl;
|
|
server_name www.ballalama.com;
|
|
ssl on;
|
|
ssl_certificate /etc/letsencrypt/live/ballalama.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/ballalama.com/privkey.pem;
|
|
|
|
return 301 https://ballalama.com$request_uri;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
}
|
|
|
|
|
|
|
|
|
|
server {
|
|
listen [::]:80;
|
|
server_name ballalama.com www.ballalama.com ballalama3.quartz.xyz;
|
|
|
|
return 301 https://ballalama.com$request_uri;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
} |