This commit is contained in:
2026-05-19 16:17:27 +02:00
parent 16266c1a18
commit 613e6be0f8
44 changed files with 1244 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
upstream demo {
{% for server in groups.webserver %}
server {{ server }};
{% endfor %}
}
server {
listen 80;
location / {
proxy_pass http://demo;
}
}