Skip to content

Instantly share code, notes, and snippets.

@felahdab
Last active September 13, 2022 19:56
Show Gist options
  • Save felahdab/5a9b44189ae036a024f69755876ceeca to your computer and use it in GitHub Desktop.
Save felahdab/5a9b44189ae036a024f69755876ceeca to your computer and use it in GitHub Desktop.

How to host a complete Laravel application thru a domain "subfolder", when using Nginx_proxy_manager:

For this example, I suppose you have an nginx_proxy_manager instance (docker container) setup, and that you want to make an application which is served by another web server container at its root (say: http://web-container/) in a subpath of the nginx_proxy_manager proxy host entry.

Create a custom location:

  • define the path (ex: foobar/)
  • make it point to the application serving the Laravel application you wish to access (web-container/ be careful to include the /)
  • modify the advanced settings and insert the following directives:
rewrite /foobar/(.*) /$1  break;
sub_filter 'https://www.example.com' 'https://www.example.com/foobar';
sub_filter_once off;
proxy_redirect 'https://www.example.com' 'https://www.example.com/foobar';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment