diff --git a/docs/reverse.rst b/docs/reverse.rst index 6cde55f2..8d0dcc8e 100644 --- a/docs/reverse.rst +++ b/docs/reverse.rst @@ -66,7 +66,7 @@ Because the admin interface is served as ``/admin``, the Webmail as ``/webmail`` server { # [...] here goes your standard configuration - location ~ ^/(admin|sso|static|webdav|webmail)/ { + location ~ ^/(admin|sso|static|webdav|webmail) { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr proxy_pass https://localhost:8443; @@ -89,6 +89,8 @@ Because the admin interface is served as ``/admin``, the Webmail as ``/webmail`` } } +.. note:: Please don’t add a ``/`` at the end of the location pattern or all your redirects will fail with 404 because the ``/`` would be missing, and you would have to add it manually to move on + .. code-block:: docker #mailu.env file diff --git a/towncrier/newsfragments/2185.doc b/towncrier/newsfragments/2185.doc new file mode 100644 index 00000000..4b32656b --- /dev/null +++ b/towncrier/newsfragments/2185.doc @@ -0,0 +1 @@ +remove the / in the location to avoid http 404