generated from nhcarrigan/template
15 lines
358 B
Plaintext
15 lines
358 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
server_name git.nhcarrigan.com;
|
|
ssl_certificate /etc/letsencrypt/live/git.nhcarrigan.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/git.nhcarrigan.com/privkey.pem;
|
|
|
|
client_max_body_size 100M;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_pass http://127.0.0.1:3000;
|
|
proxy_redirect off;
|
|
}
|
|
}
|