Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct hyperlinks with custom url_prefix applied #1297

Merged
merged 6 commits into from
Jun 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ jobs:
- name: Run unit tests
run: |
python -m flower --version
python -m tests.unit.__main__
python -m tests.unit

26 changes: 19 additions & 7 deletions docs/reverse-proxy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,34 @@ 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 is a minimal `nginx` configuration:

The following block represents the minimal `nginx` configuration:

.. code-block:: nginx

server {
listen 80;
server_name flower.example.com;
charset utf-8;

location / {
proxy_pass http://localhost:5555;
proxy_set_header Host $host;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}

If you run Flower behind custom location, make sure :ref:`url_prefix` option
value equals to the location path.

For instance, for `url_prefix` = **flower** (or **/flower**) you need the following
`nginx` configuration:

.. code-block:: nginx

server {
listen 80;
server_name flower.example.com;

location /flower/ {
proxy_pass http://localhost:5555;
}
}

Expand Down
11 changes: 4 additions & 7 deletions examples/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
server {
location /flower/static {
alias /the/path/to/flower/static;
}
location /flower {
rewrite ^/flower/(.*)$ /$1 break;
listen 80;

# with url_prefix=`flower`
location /flower/ {
proxy_pass http://localhost:5555;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
}
}
7 changes: 2 additions & 5 deletions flower/static/js/flower.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 +450,8 @@ var flower = (function () {
var total = api.column(column).data().reduce(sum, 0);
var footer = total;
if (total !== 0) {
footer = '<a href="/tasks';
if (state !== "") {
footer += '?state=' + state;
}
footer += '">' + total + '</a>';
let queryParams = (state !== '' ? `?state=${state}` : '');
footer = '<a href="' + url_prefix() + '/tasks' + queryParams + '">' + total + '</a>';
}
$(api.column(column).footer()).html(footer);
}
Expand Down
2 changes: 1 addition & 1 deletion flower/templates/navbar.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<nav class="navbar navbar-expand-lg navbar-light bg-green mx-2">
<a class="navbar-brand" href="{{ reverse_url('main') }}">
<img src="/favicon.ico" width="30" height="30" class="d-inline-block align-top" alt="">
<img src="{{ static_url('favicon.ico') }}" width="30" height="30" class="d-inline-block align-top" alt="">
Flower
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
Expand Down
2 changes: 1 addition & 1 deletion tests/run-unit-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e

python -m tests.unit.__main__
python -m tests.unit
15 changes: 8 additions & 7 deletions tests/unit/views/test_url_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,26 @@ def test_tasks_api_url(self):

class URLPrefixTests(AsyncHTTPTestCase):
def setUp(self):
with self.mock_option('url_prefix', 'test_root'):
self.url_prefix = '/test_root'
with self.mock_option('url_prefix', self.url_prefix):
super().setUp()

def test_tuple_handler_rewrite(self):
r = self.get('/test_root/workers')
r = self.get(self.url_prefix + '/workers')
self.assertEqual(200, r.code)

def test_root_url(self):
r = self.get('/test_root/')
r = self.get(self.url_prefix + '/')
self.assertEqual(200, r.code)

def test_tasks_api_url(self):
with patch.dict(os.environ, {"FLOWER_UNAUTHENTICATED_API": "true"}):
r = self.get('/test_root/api/tasks')
with patch.dict(os.environ, {'FLOWER_UNAUTHENTICATED_API': 'true'}):
r = self.get(self.url_prefix + '/api/tasks')
self.assertEqual(200, r.code)

def test_base_url_no_longer_working(self):
r = self.get('/workers')
self.assertNotEqual(200, r.code)
r = self.get('/')
self.assertEqual(404, r.code)


class RewriteHandlerTests(AsyncHTTPTestCase):
Expand Down