forked from coracle/zooid
Add cert command and config
This commit is contained in:
+15
-3
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user