configurations/Nginx/Server Blocks/loc.sh.conf

14 lines
342 B
Plaintext
Raw Normal View History

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name loc.sh;
2021-05-01 15:13:49 -04:00
ssl_certificate /etc/letsencrypt/live/loc.sh-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/loc.sh-0001/privkey.pem; # managed by Certbot
location / {
2021-05-01 15:13:49 -04:00
proxy_pass http://localhost:3890;
}
2021-05-01 15:13:49 -04:00
}