generated from nhcarrigan/template
15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
|
server {
|
||
|
listen 443 ssl;
|
||
|
server_name fedi.nhcarrigan.com;
|
||
|
ssl_certificate /etc/letsencrypt/live/fedi.nhcarrigan.com/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/fedi.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;
|
||
|
}
|
||
|
}
|