Allow to listen on a specific address via TLJH config

This commit is contained in:
Nicolas Surleraux
2023-05-24 11:42:27 +02:00
parent 1e095f3a3e
commit bbc6c465ac
5 changed files with 34 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ X-Xsrftoken = "redact"
[entryPoints]
[entryPoints.http]
address = ":{{ http['port'] }}"
address = "{{ http['address'] }}:{{ http['port'] }}"
[entryPoints.http.transport.respondingTimeouts]
idleTimeout = "10m"
@@ -33,7 +33,7 @@ X-Xsrftoken = "redact"
scheme = "https"
[entryPoints.https]
address = ":{{ https['port'] }}"
address = "{{ https['address'] }}:{{ https['port'] }}"
[entryPoints.https.http.tls]
options = "default"