Compare commits
3 Commits
basic-auth
...
v3-log-max
| Author | SHA1 | Date | |
|---|---|---|---|
| 304915a396 | |||
| 8d7f9bd6a2 | |||
| 01c5b2a3a4 |
@ -10,6 +10,7 @@ LETS_ENCRYPT_EMAIL=certs@example.com
|
|||||||
# DASHBOARD_ENABLED=true
|
# DASHBOARD_ENABLED=true
|
||||||
# WARN, INFO etc.
|
# WARN, INFO etc.
|
||||||
LOG_LEVEL=WARN
|
LOG_LEVEL=WARN
|
||||||
|
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"
|
||||||
|
|||||||
@ -23,13 +23,6 @@
|
|||||||
your Docker swarm box
|
your Docker swarm box
|
||||||
4. `abra app deploy YOURAPPDOMAIN`
|
4. `abra app deploy YOURAPPDOMAIN`
|
||||||
|
|
||||||
## Configuring basic auth
|
|
||||||
|
|
||||||
1. Create the usersfile locally: `htpasswd -c usersfile <username>`
|
|
||||||
2. Uncomment the Basic Auth section in your .env file
|
|
||||||
3. Insert the secret: `abra app secret insert <domain> usersfile v1 -f usersfile
|
|
||||||
4. Redploy you app: `abra app deploy -f <domain>`
|
|
||||||
|
|
||||||
## Configuring wildcard SSL using DNS
|
## Configuring wildcard SSL using DNS
|
||||||
|
|
||||||
Automatic certificate generation will Just Work™ for most recipes which use a fixed
|
Automatic certificate generation will Just Work™ for most recipes which use a fixed
|
||||||
|
|||||||
2
abra.sh
2
abra.sh
@ -1,3 +1,3 @@
|
|||||||
export TRAEFIK_YML_VERSION=v23
|
export TRAEFIK_YML_VERSION=v24
|
||||||
export FILE_PROVIDER_YML_VERSION=v10
|
export FILE_PROVIDER_YML_VERSION=v10
|
||||||
export ENTRYPOINT_VERSION=v4
|
export ENTRYPOINT_VERSION=v4
|
||||||
|
|||||||
@ -27,6 +27,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- DASHBOARD_ENABLED
|
- DASHBOARD_ENABLED
|
||||||
- LOG_LEVEL
|
- LOG_LEVEL
|
||||||
|
- ${LOG_MAX_AGE:-0}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "traefik", "healthcheck"]
|
test: ["CMD", "traefik", "healthcheck"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|||||||
@ -4,6 +4,7 @@ core:
|
|||||||
|
|
||||||
log:
|
log:
|
||||||
level: {{ env "LOG_LEVEL" }}
|
level: {{ env "LOG_LEVEL" }}
|
||||||
|
maxAge: {{ env "LOG_MAX_AGE" }}
|
||||||
|
|
||||||
providers:
|
providers:
|
||||||
swarm:
|
swarm:
|
||||||
|
|||||||
Reference in New Issue
Block a user