add simple hs pattern

This commit is contained in:
grillazz
2025-09-02 13:14:50 +02:00
parent 6a976e0123
commit ca89d54513
4 changed files with 111 additions and 2 deletions

12
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
upstream loadbalancer {
server api1:8080 weight=1;
server api2:8080 weight=1;
}
server {
listen 80;
location / {
proxy_pass http://loadbalancer;
}
}