-
-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
beta 14 installer...https works greatly, but udp does not work for me #210
Comments
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. |
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: Hope this is what you mean. |
You have incorrect indenting for your udp entrypoint. It needs to move left one tab. See below: entryPoints:
web:
address: ":80"
websecure:
address: ":443"
transport:
respondingTimeouts:
readTimeout: "30m"
http:
tls:
certResolver: "letsencrypt"
udp-19132:
address: ":19132/udp" Try to fix this then restart the stack. |
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: i add a dns with minecraft.mydomain.com (A Record) to the IP of the outside Pangolin server, like the https that works greadly. |
Did you open the new upd port in the firewall in front of your pangolin installation? |
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:`
The text was updated successfully, but these errors were encountered: