Skip to content
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

Проблемы совместимости с trafick v3.0 #129

Closed
Gasparonik opened this issue May 21, 2024 · 2 comments · Fixed by #130
Closed

Проблемы совместимости с trafick v3.0 #129

Gasparonik opened this issue May 21, 2024 · 2 comments · Fixed by #130
Assignees
Labels
bug Something isn't working

Comments

@Gasparonik
Copy link

у nginx контейнера описание такое:

labels:
  - "traefik.enable=true"
  - "traefik.http.routers.${NETWORK_NAME}.entrypoints=web"
  - "traefik.http.routers.${NETWORK_NAME}.rule=Host(`${HOST_NAME}.localhost`) || HostRegexp(`{subdomain:.*}.${HOST_NAME}.localhost`) || HostRegexp(`${HOST_NAME}.{ip:.*}.nip.io`) || HostRegexp(`{subdomain:.*}.${HOST_NAME}.{ip:.*}.nip.io`)"
  - "traefik.http.routers.${NETWORK_NAME}_ssl.entrypoints=websecure"
  - "traefik.http.routers.${NETWORK_NAME}_ssl.rule=Host(`${HOST_NAME}.localhost`) || HostRegexp(`{subdomain:.*}.${HOST_NAME}.localhost`) || HostRegexp(`${HOST_NAME}.{ip:.*}.nip.io`) || HostRegexp(`{subdomain:.*}.${HOST_NAME}.{ip:.*}.nip.io`)"
  - "traefik.http.routers.${NETWORK_NAME}_ssl.tls=true"
  - "traefik.docker.network=dl_default"

домен localhost работает, а nip.io отдает 404 ошибку.

Заметил, что недавно вышла новая версия traefick 3.0

Вы же устанавливаете последнюю версию всегда, как я понял:

image

Нам помогло "обмануть" с помощью команд

docker image rm trafick
docker pull traefik:v2.10.7
docker tag traefik:v2.10.7 traefik:latest

Предлагаемое решение проблемы: временно зафиксировать версию 2

Иначе, как мне кажется, придется переписывать конфиги всех проектов в docker-compose.yml

@varrcan varrcan self-assigned this May 21, 2024
@varrcan varrcan added the bug Something isn't working label May 21, 2024
@varrcan varrcan linked a pull request May 21, 2024 that will close this issue
@varrcan
Copy link
Collaborator

varrcan commented May 21, 2024

Добрый день! Спасибо, что указали на ошибку. Да, в версии 3.0 разработчики сломали регулярки параметра HostRegexp, он теперь работает по синтаксису Go.
Я временно залочил версию Traefik на 2.10.7, как быстрое решение.

@varrcan
Copy link
Collaborator

varrcan commented May 21, 2024

Исправления в версии 1.1.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants