expose rabbitmq

This commit is contained in:
2026-03-11 00:31:08 +01:00
parent b39391dc90
commit 241ee19e1c
2 changed files with 10 additions and 0 deletions

View File

@@ -20,6 +20,14 @@ server {
client_max_body_size 10M;
location /rabbitmq/ {
proxy_pass http://host.docker.internal:15672/;
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;
}
location / {
proxy_pass http://host.docker.internal:8090;
proxy_set_header Host $host;