proxy/nginx/templates/nextcloud.rschneider.hu.conf.template
Roland Schneider 495afbdc3a add tempaltes
2023-10-10 19:09:49 +00:00

17 lines
377 B
Plaintext

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}:5050;
proxy_set_header Host $host;
}
}