Hello
I have the Traefik 3.4.1 running in Docker on Debian 12
Full config attached [https://pastebin.com/mdkrJauK](https://pastebin.com/mdkrJauK)
Mentioned traefik-dynamic.yml is blank file
And I have another container with nginx attached the same network
Full config for Traefik:
[root@vm-server03 traefik]# cat docker-compose.yml
After another container with nginx started I see message in log:
'''traefik-1 | 2025-06-22T15:53:47+03:00 ERR github.com/traefik/traefik/v3/pkg/provider/acme/provider.go:484 > Unable to obtain ACME certificate for domains error="unable to generate a certificate for the domains [nginx-entrypoint-nginx]: acme: error: 400 :: POST :: :: Invalid identifiers requested :: Cannot issue for "nginx-entrypoint-nginx": Domain name needs at least one dot" ACME CA==["nginx-entrypoint-nginx"] providerName=myresolver.acme routerName=websecure-traefik-http-router@docker rule=Host(nginx-entrypoint-nginx)'''
Can you explain me, reasons for this message?
Why my config request certs for nginx-entrypoint-nginx?
Use 3 backticks before and after code/config to make it more readable and preserve spacing, which is important in yaml.
It seems somewhere in your configs you have a hostname without a dot. Strange to share all configs inline, but not the relevant one of nginx.
Note that Traefik dashboard also needs /api.
Also note that PathPrefix() and stripPrefix usually do not work with GUI web apps, unless some kind of "base" path can be set.
They usually assume they are root, initial page loads, but wants dependencies like /static/script.js, which can’t be loaded because they don’t match the rule.
Note that to share a Docker network, it needs to be created externally or needs to be using attachable: true. But a secondary compose file needs to use external: true to access a already created Docker network.
traefik-traefik-1 | 2025-06-24T13:08:29+03:00 ERR github.com/traefik/traefik/v3/pkg/provider/acme/provider.go:484 > Unable to obtain ACME certificate for domains error="unable to generate a certificate for the domains [nginx-e-name-nginx-pacer]: acme: error: 400 :: POST :: https://acme-staging-v02.api.letsencrypt.org/acme/new-order :: urn:ietf:params:acme:error:rejectedIdentifier :: Invalid identifiers requested :: Cannot issue for \"nginx-e-name-nginx-pacer\": Domain name needs at least one dot" ACME CA=https://acme-staging-v02.api.letsencrypt.org/directory acmeCA=https://acme-staging-v02.api.letsencrypt.org/directory domains=["nginx-e-name-nginx-pacer"] providerName=myresolver.acme routerName=websecure-traefik-http-router@docker rule=Host(`nginx-e-name-nginx-pacer`)