Running behind reverse proxyΒΆ
To run Flower behind a reverse proxy, remember to set the correct Host header to the request to make sure Flower can generate correct URLs.
The following block represents the minimal nginx configuration:
server {
listen 80;
server_name flower.example.com;
location / {
proxy_pass http://localhost:5555;
}
}
If you run Flower behind custom location, make sure url_prefix option value equals to the location path.
For instance, for url_prefix = flower (or /flower) you need the following nginx configuration:
server {
listen 80;
server_name flower.example.com;
location /flower/ {
proxy_pass http://localhost:5555;
}
}
Note that you should not expose this site to the public internet without any sort of authentication! If you have a htpasswd file with user credentials you can make nginx use this file by adding the following lines to the location block:
auth_basic "Restricted";
auth_basic_user_file htpasswd;