Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
1638b18b2b
|
|||
|
df2f006894
|
|||
| 6d5c012e42 |
@@ -15,6 +15,13 @@ LOG_MAX_AGE=1
|
|||||||
# This is here so later lines can extend it; you likely don't wanna edit
|
# This is here so later lines can extend it; you likely don't wanna edit
|
||||||
COMPOSE_FILE="compose.yml"
|
COMPOSE_FILE="compose.yml"
|
||||||
|
|
||||||
|
# Increase read timeout (or change it to 0s) to ensure large file
|
||||||
|
# uploads work.
|
||||||
|
#
|
||||||
|
# https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#opt-transport-respondingTimeouts-readTimeout
|
||||||
|
READ_TIMEOUT=60s
|
||||||
|
WRITE_TIMEOUT=0s
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# General settings #
|
# General settings #
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
export TRAEFIK_YML_VERSION=v31
|
export TRAEFIK_YML_VERSION=v31a
|
||||||
export FILE_PROVIDER_YML_VERSION=v12
|
export FILE_PROVIDER_YML_VERSION=v12
|
||||||
export ENTRYPOINT_VERSION=v5
|
export ENTRYPOINT_VERSION=v5
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ services:
|
|||||||
- DASHBOARD_ENABLED
|
- DASHBOARD_ENABLED
|
||||||
- LOG_LEVEL
|
- LOG_LEVEL
|
||||||
- ${LOG_MAX_AGE:-0}
|
- ${LOG_MAX_AGE:-0}
|
||||||
|
- READ_TIMEOUT=${READ_TIMEOUT:-60s}
|
||||||
|
- WRITE_TIMEOUT=${WRITE_TIMEOUT:-0s}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "traefik", "healthcheck"]
|
test: ["CMD", "traefik", "healthcheck"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ entrypoints:
|
|||||||
to: web-secure
|
to: web-secure
|
||||||
web-secure:
|
web-secure:
|
||||||
address: ":443"
|
address: ":443"
|
||||||
|
transport:
|
||||||
|
respondingTimeouts:
|
||||||
|
readTimeout: {{ env "READ_TIMEOUT" }}
|
||||||
|
writeTimeout: {{ env "WRITE_TIMEOUT" }}
|
||||||
http:
|
http:
|
||||||
encodedCharacters:
|
encodedCharacters:
|
||||||
allowEncodedSlash: true
|
allowEncodedSlash: true
|
||||||
|
|||||||
Reference in New Issue
Block a user