mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
Planka container startup problem, redirects to http://login/ #311
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Ari9310 on GitHub (May 11, 2023).
Hello, I installed a container from planka on my vps and got it running. Unfortunately, typing the address in the browser title bar shows "Planka" but the page redirects to http://login/ which obviously does not exist on the web. On the other hand, when I add "/login" to the site address, the Planka site appears but I can't log in with my demo@demo.demo login and demo password because: "Unknown error, try again later". I installed using https://docs.planka.cloud/docs/installl-planka/Docker%20Compose why does the site behave like this?
@Ari9310 commented on GitHub (May 12, 2023):
After plugging in the subdomain the site started working also the problem solved.
@ChristopherHaws commented on GitHub (Jun 9, 2023):
I ran into this issue when my
BASE_URLhad a trailing back slash (i.e.'BASE_URL=http://192.168.1.5:1337/')The fix was to remove it (i.e.
'BASE_URL=http://192.168.1.5:1337')Ideally planka would trim the slash from the URL so that it could be written either way :)