Replies: 1 comment
-
|
Alright LOL I found the issue and it's not visible here in my provided configs: The exact host directive above VoidAuth in my Caddyfile had no closing bracket |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I wanted to try out VoidAuth, but I'm just getting a blank page.
If I try to access via Caddy as a reverse proxy there is no HTTP Body returned. If I try to access VoidAuth directly via port 3000, I do get a HTTP response with body content, but nothing is rendered in the browser (tried Firefox and Chrome). I'm pretty sure that I'm doing something horribly wrong, so I did not open this as an issue^^ I thought that it might be something with my docker networks, but I also tried adding the VoidAuth container to my
caddy_networkinitially, but had the same issues there. I have no issues with other containers that are reverse proxied via Caddy, but I can't rule out that it's something with my Caddy config. Some things that I tried/verified for troubleshooting:http://auth.demotenant.de:3000and access VoidAuth via plaintext HTTP on port 3000 => still nothing rendered in the browserENABLE_DEBUG=truebut I don't see any additional info in the logsDB_PASSWORDandSTORAGE_KEYIf anyone has any ideas or suggestions please let me know, highly appreciated :) VoidAuth looks really cool and I would love to use it on my homeserver.
Here is my config (removed some infos which is related to other containers and docker networks):
compose.yaml
Dockerfile for Caddy
.env file
Caddyfile
{ acme_ca https://acme-v02.api.letsencrypt.org/directory email someblah@example.com acme_dns desec { token "$DESEC_API_TOKEN" } } *.demotenant.de { @voidauth host auth.demotenant.de handle @voidauth { reverse_proxy http://voidauth:3000 } # Fallback for otherwise unhandled domains handle { respond "not defined in Caddyfile 🫤" } }Example responses (screenshots):
Via Caddy
Via port 3000
Logs:
Details
Beta Was this translation helpful? Give feedback.
All reactions