feat: added proxy and admin entrypoint

This commit is contained in:
ITQ
2025-07-25 16:21:24 +03:00
parent 8c1ed19966
commit 62a233b6c4
3 changed files with 282 additions and 13 deletions
+29
View File
@@ -0,0 +1,29 @@
(basic-auth) {
basic_auth {
admin $2a$14$2zQilpLka2h8Sn1mmOLAAezwDN8Zy8Ta36WECk4qt5MTn3CWksR0m
}
}
adnova.itqdev.xyz {
handle_path /health/* {
import basic-auth
}
reverse_proxy http://backend:8080
}
admin.adnova.itqdev.xyz {
import basic-auth
root * /var/www/admin
}
loadtest.adnova.itqdev.xyz {
import basic-auth
reverse_proxy http://loadtest:5001
}
grafana.adnova.itqdev.xyz {
reverse_proxy http://grafana:3000
}