forked from DevOps/deploy.stack
33 lines
871 B
YAML
33 lines
871 B
YAML
|
|
# Dynamic configuration
|
||
|
|
http:
|
||
|
|
middlewares:
|
||
|
|
nofloc:
|
||
|
|
headers:
|
||
|
|
customResponseHeaders:
|
||
|
|
Permissions-Policy: "interest-cohort=()"
|
||
|
|
secureHeaders:
|
||
|
|
headers:
|
||
|
|
sslRedirect: true
|
||
|
|
forceSTSHeader: true
|
||
|
|
stsIncludeSubdomains: true
|
||
|
|
stsPreload: true
|
||
|
|
stsSeconds: 31536000
|
||
|
|
|
||
|
|
# UserName : admin
|
||
|
|
# Password : qwer1234
|
||
|
|
user-auth:
|
||
|
|
basicAuth:
|
||
|
|
users:
|
||
|
|
- "admin:$apr1$tm53ra6x$FntXd6jcvxYM/YH0P2hcc1"
|
||
|
|
|
||
|
|
tls:
|
||
|
|
options:
|
||
|
|
default:
|
||
|
|
cipherSuites:
|
||
|
|
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
|
||
|
|
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
|
||
|
|
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
|
||
|
|
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
|
||
|
|
- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
|
||
|
|
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
|
||
|
|
minVersion: VersionTLS12
|