nginx: route /flower to the queue monitoring system.
This patch removes the exposed port for the flower server and instead uses nginx to route urls /flower/* to the queue monitoring system.
This commit is contained in:
parent
5922e29369
commit
43b194d612
2 changed files with 7 additions and 3 deletions
|
@ -70,4 +70,10 @@ server {
|
|||
add_header X-Cache-Status STATIC;
|
||||
access_log off;
|
||||
}
|
||||
|
||||
# monitor the celery queues with flower, no caching enabled
|
||||
location /flower/ {
|
||||
proxy_pass http://flower:8888;
|
||||
proxy_cache_bypass 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue