I am trying to connect my jupyter notebok server (:8888 port) via reverse proxy server
I have such rules:
ProxyPass "/serv8888" "http://localhost:8888"
ProxyPassReverse "/serv8888" "http://localhost:8888"
ProxyPass "/" "http://localhost:80"
ProxyPassReverse "/" "http://localhost:80"
but when I connect to http://localhost/serv8888 it redirects internally to http://localhost:80/tree and basically I get http://localhost/tree and it does not work because I need to get
http://localhost/serv8888/tree what also means internally http://localhost:8888/tree
How to make it working? Please help me, I spent two days and almost gave up