Cleanup : all sites share a common syntax

This commit is contained in:
2023-11-08 23:37:28 +01:00
parent b3f47a87bb
commit 89d1e15096
67 changed files with 1058 additions and 1535 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 443 ssl http2;
server_name jelly.schleppe.cloud;
location / {
proxy_pass http://jelly.schleppe:8096;
}
ssl_certificate /etc/letsencrypt/live/jelly.schleppe.cloud/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/jelly.schleppe.cloud/privkey.pem; # managed by Certbot
}