NextCloud NGINX Reverse Proxy Site Config
NextCloud
This is the site config I use for my NGINX RP to point my sub to the LXC running NextCloud:
server {
listen 80;
server_name cloud.domain.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name cloud.domai...