Added roles

This commit is contained in:
vagrant
2025-11-18 13:18:52 +00:00
parent cbe9bfefa4
commit b40939e399
39 changed files with 568 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;
}
}