New install scripts, consistent folder structure

This commit is contained in:
2023-03-06 09:40:49 +01:00
parent f955b587e7
commit 33c20614d9
26 changed files with 35 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
server {
listen 80;
rewrite ^ https://$host$request_uri? permanent;
}
server {
listen 443 ssl;
server_name hlb0.octt.eu.org;
ssl_certificate /etc/letsencrypt/live/hlb0.octt.eu.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/hlb0.octt.eu.org/privkey.pem;
ssl_prefer_server_ciphers on;
location / {
root /Server/www/root;
try_files $uri =404;
}
}