Initial working commit

This commit is contained in:
Bastian de Byl
2020-09-24 21:06:56 -04:00
commit e0abdbe506
32 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 80;
listen [::]:80;
server_name {{ ci_server_name }};
location /.well-known {
root /srv/http;
try_files $uri $uri/ =404;
}
location / {
return 301 https://$host$request_uri;
}
}