added back nextcloud, finalized photoprism

This commit is contained in:
Bastian de Byl
2022-10-02 21:32:26 -04:00
parent 0e9fc3edc3
commit d5cadc560c
9 changed files with 168 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
server {
modsecurity on;
modsecurity_rules_file /etc/nginx/modsec_includes.conf;
listen 80;
server_name {{ cloud_server_name }};
location '/.well-known/acme-challenge' {
default_type "text/plain";
root /srv/http/letsencrypt;
}
location / {
return 302 https://$host$request_uri;
}
}