mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-09 17:23:22 +03:00
🐛 Bug Report: SvelteKitError: Not found #343
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 @lazyzyf on GitHub.
Reproduction steps
I use caddy as reverse proxy, in docker-compose.yml map ip as 8080:80,
in Caddyfile:
reverse_proxy pocketid:3000
then when login https://id.example.com/login/setup , it report error.
Expected behavior
I can creat new admin user.
Actual Behavior
report error when create new user..
https://id.example.com/login/setup
Version and Environment
v0.33
Log Output
No response
@lazyzyf commented on GitHub:
Caddyfile:
compose.yml
.env
podman logs -f:
and
@stonith404 commented on GitHub:
Please share share your docker-compose.yml and Caddyfile.
@stonith404 commented on GitHub:
You have to do reverse_proxy pocketid:80 in your Caddyfile.
@lazyzyf commented on GitHub:
when I do reverse_proxy pocketid:80 in my Caddyfile, I can't open the url as it's blank.
so only when I set reverse_proxy pocketid:3000 I can open the url https://id.example.com
@stonith404 commented on GitHub:
Alright. Please set the
CADDY_PORTenvironment variable in your.envto3333and in your Caddyfile usereverse_proxy pocketid:3333.@lazyzyf commented on GitHub:
Great, it's working now. Thank you for your help.