How do I set this up inside the domain on the path?
How do I set this up inside the domain on the path? Is it possible?
Example: "example.com/databag" instead of "databag.example.com".
Sorry for the late response. I rely on my email for notifications, and have been getting lots of spam...
I was able to get this working with nginx_proxy_manager. In 'custom locations', I added a path, and then added this block:
location /<path> {
proxy_pass http://<internal ip>:<internal port>/;
}
Please share screenshots of the configuration nginx_proxy_manager
Here I tested with the path '/db':
It doesn't work for me. he visits the site, but does not load anything because he tries to read files from the root path ~~I did everything as in the screenshot and tried with nginx overwrites, it does not always request files from the root path~~
Hmm, perhaps I misunderstood your question.
I think the above config allows for a container to be reached at a specified host/path.
Alternatively, the app server can add a path prefix and still respond to the same hostname. This wouldn't allow for a different path prefix to be used by another app server, so I think I still misunderstand.