Add cert command and config

This commit is contained in:
Jon Staab
2025-10-01 07:38:47 -07:00
parent 14da64638c
commit 9bda1643a4
2 changed files with 19 additions and 6 deletions
+15 -3
View File
@@ -1,6 +1,12 @@
server {
listen 80;
server_name *.yourdomain.com;
listen 443 ssl;
server_name *.yourdomain.com;
ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://127.0.0.1:3334;
@@ -9,5 +15,11 @@ server {
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
server {
listen 80;
server_name *.yourdomain.com;
return 301 https://$host$request_uri;
}