Add Debian 12 and CI

This commit is contained in:
Emilien Mantel
2023-05-30 18:30:49 +02:00
parent f02b0e157f
commit fc73f2a31b
27 changed files with 651 additions and 64 deletions

View File

@@ -0,0 +1,16 @@
# {{ ansible_managed }} - custom template
server {
listen 80;
listen 8888 http2;
listen 9999 http2 proxy_protocol;
server_name {{ item.name }};
index index.html index.htm;
root {{ item.root }};
location / {
try_files $uri $uri/ =404;
}
}