[bug]: 404 https://xx.com/api/licenses/instances/
Is there an existing issue for this?
- [X] I have searched the existing issues
Current behavior
Hi, when I do the setup.sh installation for docker self hosted, the app only shows a loading icon.
Any ideas?
Steps to reproduce
I set the WEB_URL to my domain. I am using my own nginx proxy with letsencrypt so I disabled the integrated one.
The dev console shows https://xx.com/api/licenses/instances/ 404
Browser
Google Chrome
Version
Self-hosted
+1 same issue
@wurst44 Which dockerfile do you deploy containers with?
you mean docker-compose?
curl -fsSL -o setup.sh https://raw.githubusercontent.com/makeplane/plane/master/deploy/selfhost/install.sh
which becomes this one:
https://raw.githubusercontent.com/makeplane/plane/master/deploy/selfhost/docker-compose.yml
https://github.com/makeplane/plane/blob/preview/setup.sh Can you try with this sh instead of install.sh? It looks like you're making a mistake during the installation process.
ok, the issue was this comment in the docker-compose.yml:
# Comment this if you already have a reverse proxy running
proxy:
container_name: proxy
build:
context: ./nginx
[...]
Which I did at first and let my Letsencrypt main proxy point to container_name: web, that gives me the above 404.
Then I uncommented this nginx (readded the plane nginx) and added that one to my (main) Letsencrpyt reverse proxy configuration.