Bind Traefik entry points to IPv6 addresses
This commit is contained in:
parent
8da43a68e1
commit
8c543be367
1 changed files with 10 additions and 6 deletions
|
|
@ -48,7 +48,8 @@
|
|||
staticConfigOptions = {
|
||||
entryPoints = {
|
||||
web = {
|
||||
address = ":80";
|
||||
# Bind on IPv6 as well as IPv4 by using [::]:80
|
||||
address = "[::]:80";
|
||||
asDefault = true;
|
||||
http.redirections.entrypoint = {
|
||||
to = "websecure";
|
||||
|
|
@ -56,7 +57,8 @@
|
|||
};
|
||||
};
|
||||
websecure = {
|
||||
address = ":443";
|
||||
# Bind on IPv6 as well as IPv4 by using [::]:443
|
||||
address = "[::]:443";
|
||||
asDefault = true;
|
||||
http.tls = {
|
||||
domains = [
|
||||
|
|
@ -69,17 +71,19 @@
|
|||
};
|
||||
# Federation entrypoint: external TLS on 8448
|
||||
federation = {
|
||||
address = ":8448";
|
||||
# Bind on IPv6 as well as IPv4 by using [::]:8448
|
||||
address = "[::]:8448";
|
||||
};
|
||||
# TeamSpeak entry points
|
||||
teamspeak-voice = {
|
||||
address = ":9987/udp";
|
||||
# UDP entrypoint bind to IPv6 as well
|
||||
address = "[::]:9987/udp";
|
||||
};
|
||||
teamspeak-squery = {
|
||||
address = ":10022/tcp";
|
||||
address = "[::]:10022/tcp";
|
||||
};
|
||||
teamspeak-data = {
|
||||
address = ":30033/tcp";
|
||||
address = "[::]:30033/tcp";
|
||||
};
|
||||
};
|
||||
log = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue