mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-15 21:31:24 -05:00
beta 14 installer...https works greatly, but udp does not work for me #91
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 @Mitch187 on GitHub (Feb 16, 2025).
Hi,
i have installed the version beta 14 installer and with https and lets encrypt it works perfekt. Thank you.
After that, i want to customize a minecraft server via udp...
I have done this:
https://docs.fossorial.io/Getting%20Started/tcp-udp
Here are my traefik and gerbil config:
`Gerbil:
ports:
Traefik:
entryPoints:
udp-19132:
address: ":19132/udp"`
After i start the traefik container, my https://pangolin.mydomain.com does not work anymore. My newt Container say this:
ERROR: 2025/02/16 02:08:09 Failed to connect: failed to get token: failed to request new token: Post "https://pangolin.mydomain.com/api/v1/auth/newt/get-token": dial tcp 193.31.24.59:443: connect: connection refused. Retrying in 10s...the docker container is on the same container as docker, too. Here ist the stack:
`version: '3.8'
services:
minecraftbedrock:
image: itzg/minecraft-bedrock-server:latest
container_name: Minecraft-Bedrock
hostname: minecraftbedrock
network_mode: bridge
environment:
- EULA=TRUE
volumes:
- data:/data
ports:
- 19132:19132/udp
restart: unless-stopped
volumes:
data:`
@oschwartz10612 commented on GitHub (Feb 16, 2025):
It might be that your stack is not starting properly because of a config issue. Are you able to see the pangolin web page when you are getting the newt error?
Do you see any errors in the logs?
Could you post your full traefik config and docker file? You can censor what you need to.
@Mitch187 commented on GitHub (Feb 16, 2025):
Thank you for your speedly answer. The pangolin Webpage does not work, since the change in the traffik file. I added my configuration in a zip file: Link
Here is my container log from traffik:
{"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:41Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:42Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:42Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:43Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:45Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:47Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:50Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:35:57Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:36:10Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:36:36Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:37:28Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:38:28Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:39:29Z","message":"Command error"} {"level":"error","error":"command traefik error: field not found, node: udp-19132","time":"2025-02-16T02:40:29Z","message":"Command error"}Hope this is what you mean.
@oschwartz10612 commented on GitHub (Feb 16, 2025):
You have incorrect indenting for your udp entrypoint. It needs to move left one tab. See below:
Try to fix this then restart the stack.
@Mitch187 commented on GitHub (Feb 16, 2025):
Hi,
that ist the main problem, Thank you for solving this. Now, the container starts and pangolin web page is online.
Bit i can't connect to the minecraft server from outside. Not really outsite (i came from the lan, that i can connect to the mincecraft server from my pc). Here is my Pangolin Config:
https://imgur.com/a/WXkmFBX
i add a dns with minecraft.mydomain.com (A Record) to the IP of the outside Pangolin server, like the https that works greadly.
@Lokowitz commented on GitHub (Feb 16, 2025):
Did you open the new upd port in the firewall in front of your pangolin installation?