34 lines
987 B
Plaintext
34 lines
987 B
Plaintext
|
server {
|
||
|
server_name git.shoebottom.ca;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://localhost:3000;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
|
||
|
# Increase size because commits would fail
|
||
|
client_max_body_size 500m;
|
||
|
}
|
||
|
|
||
|
listen 443 ssl; # managed by Certbot
|
||
|
ssl_certificate /etc/letsencrypt/live/git.shoebottom.ca/fullchain.pem; # managed by Certbot
|
||
|
ssl_certificate_key /etc/letsencrypt/live/git.shoebottom.ca/privkey.pem; # managed by Certbot
|
||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||
|
|
||
|
}
|
||
|
server {
|
||
|
if ($host = git.shoebottom.ca) {
|
||
|
return 301 https://$host$request_uri;
|
||
|
} # managed by Certbot
|
||
|
|
||
|
|
||
|
listen 80;
|
||
|
server_name git.shoebottom.ca;
|
||
|
return 404; # managed by Certbot
|
||
|
|
||
|
|
||
|
}
|