Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
964662d7f7 | ||
|
|
1669d64a5a | ||
|
|
8be72aa8df | ||
|
|
e501cc662d |
+12
-4
@@ -16,14 +16,22 @@ LOG_LEVEL=INFO
|
||||
|
||||
COMPOSE_FILE=compose.yml
|
||||
|
||||
#VIKUNJA_RATELIMIT_NOAUTHLIMIT=10
|
||||
|
||||
# uncomment to enable local authentication
|
||||
# LOCAL_AUTH_ENABLED=true
|
||||
# uncomment to enable self-registration (if disabled, can be done via
|
||||
# command line in the api container with vikunja user command)
|
||||
# LOCAL_REGISTRATION_ENABLED=true
|
||||
|
||||
# SSO OAUTH
|
||||
# e.g. see https://goauthentik.io/integrations/services/vikunja/
|
||||
# COMPOSE_FILE="${COMPOSE_FILE}:compose.oauth.yml"
|
||||
# OAUTH_ENABLED=true
|
||||
# OAUTH_NAME
|
||||
# OAUTH_URL
|
||||
# OAUTH_CLIENT_ID
|
||||
# OAUTH_LOGOUT_URL
|
||||
# OAUTH_NAME=authentik
|
||||
# OAUTH_URL=https://login.example.com/application/o/vikunja/
|
||||
# OAUTH_CLIENT_ID=vikunja
|
||||
# OAUTH_LOGOUT_URL=https://login.example.com/application/o/vikunja/end-session/
|
||||
# SECRET_OAUTH_SECRET_VERSION=v1
|
||||
|
||||
# E-MAIL
|
||||
|
||||
+6
-3
@@ -3,10 +3,13 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
api:
|
||||
image: vikunja/api:0.21.0
|
||||
image: vikunja/api:0.22.1
|
||||
environment:
|
||||
- DOMAIN
|
||||
- LOG_LEVEL
|
||||
- VIKUNJA_RATELIMIT_NOAUTHLIMIT
|
||||
- LOCAL_AUTH_ENABLED
|
||||
- LOCAL_REGISTRATION_ENABLED
|
||||
volumes:
|
||||
- files:/app/vikunja/files
|
||||
networks:
|
||||
@@ -27,7 +30,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}_api.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
|
||||
app:
|
||||
image: vikunja/frontend:0.21.0
|
||||
image: vikunja/frontend:0.22.1
|
||||
networks:
|
||||
- proxy
|
||||
deploy:
|
||||
@@ -37,7 +40,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.3.0+0.21.0"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.4.0+0.22.1"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost" ]
|
||||
|
||||
+9
-1
@@ -33,7 +33,11 @@ service:
|
||||
# # Enable sharing of lists via a link
|
||||
# enablelinksharing: true
|
||||
# # Whether to let new users registering themselves or not
|
||||
# enableregistration: true
|
||||
{{ if eq (env "LOCAL_REGISTRATION_ENABLED") "true" }}
|
||||
enableregistration: true
|
||||
{{ else }}
|
||||
enableregistration: false
|
||||
{{ end }}
|
||||
# # Whether to enable task attachments or not
|
||||
# enabletaskattachments: true
|
||||
# # The time zone all timestamps are in. Please note that time zones have to use [the official tz database names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). UTC or GMT offsets won't work.
|
||||
@@ -290,7 +294,11 @@ auth:
|
||||
# This is the default auth mechanism and does not require any additional configuration.
|
||||
local:
|
||||
# Enable or disable local authentication
|
||||
{{ if eq (env "LOCAL_AUTH_ENABLED") "true" }}
|
||||
enabled: true
|
||||
{{ else }}
|
||||
enabled: false
|
||||
{{ end }}
|
||||
# OpenID configuration will allow users to authenticate through a third-party OpenID Connect compatible provider.<br/>
|
||||
# The provider needs to support the `openid`, `profile` and `email` scopes.<br/>
|
||||
# **Note:** Some openid providers (like gitlab) only make the email of the user available through openid claims if they have set it to be publicly visible.
|
||||
|
||||
Reference in New Issue
Block a user