add tempaltes

This commit is contained in:
Roland Schneider
2023-10-10 19:09:49 +00:00
parent 03f79b2d9f
commit 495afbdc3a
5 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name mynginx1.rschneider.hu;
ssl_certificate /etc/nginx/ssl/live/mynginx1.rschneider.hu/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/live/mynginx1.rschneider.hu/privkey.pem;
location / {
proxy_pass http://${nuc}:5050;
proxy_set_header Host $host;
}
}