Add work_queue_webui Ansible role
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m4s

This commit is contained in:
Lennie S.
2026-04-12 00:35:50 +00:00
parent 20baf040fb
commit 39c299d926
6 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 80;
server_name _;
location / {
proxy_pass http://webui:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}