在使用正则表达式时遇到了麻烦,非常感谢您的帮助!
Traefik + docker-swarm。目标是拥有一个特定的故障回复服务,该服务应接收主域不多的任何请求。
我尝试过的:
let boothVisits = event.attendants.employers.map(e => e.boothVisits.map(arr => arr));
boothVisits = boothVisits.map(arr => arr.map(id => id));
和
traefik.frontend.rule=HostRegexp:{all:^((?!mydomain.com).)*$$}
traefik.frontend.rule=HostRegexp:all:^((?!mydomain.com).)*$$
这应将所有请求与除traefik.frontend.rule=HostRegexp:^((?!mydomain.com).)*$$
之外的任何主机匹配,但不起作用,我是否丢失了某些内容?