This commit is contained in:
Roland Schneider
2023-06-06 09:14:58 +00:00
parent e1d153f71c
commit 03f79b2d9f
28 changed files with 450 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name nextcloud.rschneider.hu;
ssl_certificate /etc/nginx/ssl/live/nextcloud.rschneider.hu/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/live/nextcloud.rschneider.hu/privkey.pem;
location / {
proxy_pass http://${nuc}:3680;
}
}