noticket - added skudak cloud (nextcloud)

This commit is contained in:
Bastian de Byl
2023-10-05 12:08:22 -04:00
parent 0e40b29329
commit 8bd4ee9dd2
10 changed files with 173 additions and 2 deletions

View File

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