Files
homelab/nginx/http.d/nextcloud-aio.conf
2024-01-31 01:05:47 -05:00

11 lines
263 B
Plaintext

server {
listen 127.0.0.1:80;
server_name nextcloud-aio.reeseapps.com;
location / {
access_log /var/log/nginx/nextcloud-http-443-access.log compression;
resolver 1.1.1.1;
proxy_pass http://{{ nextcloud.domain }}:443;
}
}