Andy
Results
2
comments of
Andy
My configuration is almost the same. Nextcloud running in a docker container und nginx as webserver / proxy. The overwritewebroot command didn't work for me either, what is working is...
I've managed to run several JupyterHubs inside Docker container. I've set my nginx as followed: ``` location / { proxy_pass https://127.0.0.1:8000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;...