2,279 questions
-1
votes
0
answers
36
views
Restarting backend container became unreachable for traefik(504 Gateway timeout)
I’m having a problem and I can’t find a solution.
I have deployed a Django backend and a React frontend using Docker.
I’m using Traefik as a reverse proxy for the web server. When I start Traefik, the ...
0
votes
0
answers
21
views
Slow access on reverse proxy with Traefik [closed]
I'm running Traefik on a Raspberry Pi 5 with the following docker-compose.yml configuration:
networks:
frontend:
name: frontend
volumes:
traefik_acme:
name: traefik_acme
services:
...
0
votes
1
answer
41
views
Traefik HostRegexp does not match [closed]
I want to use HostRegex to forward all matching subdomains to a specific location. This is my dynamic config
http:
routers:
my-router:
entryPoints:
- web
- webSecure
rule:...
0
votes
1
answer
83
views
Using GitHub Repository Secrets in GitHub Actions
I'm trying to deploy a php app hosted on a github repo to a VPS (Ubuntu) using github actions
but the final steps where the actions are done on the VPS require using the github repository secrets , ...
-1
votes
2
answers
286
views
How do I automatically retry a request in traefik when the downstream service isn't yet ready [closed]
I've configured Traefik within a Kubernetes (k8s) cluster as the ingress. However, I have some legacy containers that are being exposed that don't behave as well as one would want from a modern ...
0
votes
2
answers
76
views
Traefik as proxy always returns 404 [closed]
I want to configure Traefik to listen on port 80 and then proxy the traffic to my services which are located in docker containers.
I don't want to use docker labels, but a single YAML configuration to ...
0
votes
1
answer
104
views
Traefik: Does not access to app - HTTP 404
I run traefik on a local machine.
The dashboard works, but I can't access to my application.
I always get HTTP 404 when I try to send a request to the application.
I run everything on one local ...
0
votes
0
answers
156
views
No access to services through treafik with cloudflared
I am working with docker-compose to spin up Traefik and Cloudflared. However, I keep having an issue with being unable to send traffic through Traefik. But when I set up the DNS in the Cloudflare ...
1
vote
0
answers
140
views
Problem with traefik, keycloak and WebApp
I have a server where I deploy my services using docker-compose, among the services I have, traefik, keycloak and a WebApp.
The expected operation: The app that uses OpenIdConnect for the ...
1
vote
2
answers
3k
views
Coolify with CloudFlared & SSL/TLS HTTPS
I want to use Coolify with CloudFlare Tunnels, so all my apps will be public using https domains, e.g. https://test.mydomain.com
I followed the steps mentioned in docs in order to have a tunnel & ...
0
votes
1
answer
177
views
Expo Web App Works on Safari but Not on Chrome (Production Issue)
I’ve been struggling to deploy my Expo web app on Coolify for some time now. The app works perfectly on Safari and some mobile browsers, but it fails to load on Chrome in production. Here’s a quick ...
0
votes
1
answer
431
views
Traefik ghost deployment port mapping NOT working
I used Dokploy to deploy a ghost blog instance with docker compose and traefik (reverse proxy). I have a problem accessing a ghost blog deployment from my browser: giving Bad Gateway error.
If I use ...
0
votes
1
answer
168
views
GET/POST requests not working when using Traefik with FastAPI
I am trying to create a FastAPI app, where I use Traefik to redirect a different URL to the API. I am putting everything in a Docker environment.
Question:
I'm trying to set up a FastAPI app with ...
0
votes
0
answers
24
views
Internal requests from client to the api in docker
I would like to find out if it is possible to make requests to the api from the front end app using internal network.
Setup:
I have two containers on the Linux web server. One is react app hosted in ...
0
votes
1
answer
229
views
Traefik Configuration Using Docker Compose and Active Cloudflare Proxy
I’m trying to configure Traefik using Docker Compose for both local and external access through Cloudflare (with the proxy enabled).
This configuration works well, but it seems redundant to have ...
0
votes
1
answer
496
views
traefik acme http challenge yields "No default certificate, fallback to the internal generated certificate"
I have a basic docker compose file with two services: traefik and nginx
services:
traefik:
image: traefik:v3.2
command:
# - "--api.debug=true"
- "--log.level=DEBUG&...
0
votes
1
answer
244
views
Traefik can't connect to ACME Server
I have a portainer and traefik infrastructure on an ionos VPS. Suddenly overnight it broke. I can't access any dashboard or service on the server.
Investigating further led me to believe it probably ...
0
votes
0
answers
61
views
Https with traefik
I am trying to make a website use https via traefik, but since I added traefik I get a 404 and it is still not https. If I change the view component to expose and use port 80, it does render, but of ...
0
votes
1
answer
427
views
Traefik Proxy Setup with Podman on Windows utilizing podman-compose
I am using Podman on Windows (https://github.com/containers/podman/blob/main/docs/tutorials/podman-for-windows.md) together with podman-compose (https://github.com/containers/podman-compose?tab=readme-...
1
vote
1
answer
735
views
Protect Traefik v3 Dashboard by BasicAuth
I fail to protect the Traefik v3 dashboard using basic auth, this is what I tried:
reverse-proxy:
# official v3 traefik docker image
image: traefik:v3.1
# enables web UI and tells ...
0
votes
2
answers
272
views
Setup TLS termination on a NLB for traefik in EKS
I have a traefik setup in an EKS cluster (helm values):
ingressClass:
enabled: true
isDefaultClass: true
name: "${ingress_class}"
ingressRoute:
dashboard:
enabled: ...
1
vote
0
answers
65
views
Conflict Between Traefik Basic Auth and RabbitMQ Authentication
I'm encountering a conflict between RabbitMQ's authentication and Traefik's Basic Auth. After successfully passing Traefik's Basic Auth, I log in to RabbitMQ, but then Traefik prompts for Basic Auth ...
2
votes
0
answers
44
views
How to improve Extensibility of adding sub-middleware in traefik custom middleware
I'm working on a custom middleware for traefik that serves as a base for other sub-middlewares.
Each sub-middleware implements an interface and has its own config structure. Here's an outline of my ...
0
votes
1
answer
168
views
traefik + HTTPS + Caddy > Internal Server Error
I'm looking to upgrade our current laravel app, by using FrankenPHP to give it a performance boost. But I'm having issues when I try to deploy to our staging environment, so I'm trying to clone that ...
0
votes
1
answer
380
views
Deploying OpenSearch behind Traefik
I am trying to deploy OpenSearch behind a reverse proxy (Traefik). And I am using docker and docker-compose for this purpose. I have had success with OpenSearch Dashboards. Therefore I feel that I am ...