fix: Disable ansible lint for some parts
This commit is contained in:
parent
ee5183a1ef
commit
f25e7c3026
2 changed files with 3 additions and 3 deletions
|
@ -39,4 +39,4 @@ static_websites_default_traefik_certresolver: letsencrypt_http
|
||||||
# tmpfs: - List tmpfs definitions like the example below that should be added to the container (optional)
|
# tmpfs: - List tmpfs definitions like the example below that should be added to the container (optional)
|
||||||
# "/tmp/nginx-cache": 1M
|
# "/tmp/nginx-cache": 1M
|
||||||
# See the README for an example
|
# See the README for an example
|
||||||
static_websites: {}
|
static_websites: {} # noqa var-naming[no-role-prefix]
|
||||||
|
|
|
@ -41,7 +41,7 @@ traefik_letsencrypt_email: no-reply@example.com
|
||||||
# The proxy network name and the bridge name (you usually do not touch these)
|
# The proxy network name and the bridge name (you usually do not touch these)
|
||||||
# ! Note these are used globally, as every container that wants to use traefik,
|
# ! Note these are used globally, as every container that wants to use traefik,
|
||||||
# ! has to be reachable for traefik and all containers, routed with traefik, are connected to the proxy network.
|
# ! has to be reachable for traefik and all containers, routed with traefik, are connected to the proxy network.
|
||||||
proxy_network: proxy
|
proxy_network: proxy # noqa var-naming[no-role-prefix]
|
||||||
traefik_docker_bridge_name: docker-proxy
|
traefik_docker_bridge_name: docker-proxy
|
||||||
|
|
||||||
# Traefik IPv6 settings
|
# Traefik IPv6 settings
|
||||||
|
@ -76,7 +76,7 @@ traefik_dynamic_conf:
|
||||||
options:
|
options:
|
||||||
default:
|
default:
|
||||||
minVersion: "VersionTLS12"
|
minVersion: "VersionTLS12"
|
||||||
sniStrict: true # Can be disabled for local testing, which will lead to traefik serving it's default certificate if none can be found
|
sniStrict: true # Can be disabled for local testing, which will lead to traefik serving it's default certificate if none can be found
|
||||||
cipherSuites:
|
cipherSuites:
|
||||||
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
|
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
|
||||||
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
|
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
|
||||||
|
|
Loading…
Add table
Reference in a new issue