files: rework (#17535)

Co-authored-by: Dominic R <dominic@sdko.org>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Tana M Berry <tana@goauthentik.io>
This commit is contained in:
Marc 'risson' Schmitt
2025-12-02 18:01:51 +01:00
committed by GitHub
parent f914af70f1
commit c30d1a478d
99 changed files with 3648 additions and 1504 deletions
+8 -10
View File
@@ -32,16 +32,14 @@ def generate_local_config() -> dict[str, Any]:
}
},
"storage": {
"media": {
"backend": "file",
"s3": {
"endpoint": "http://localhost:8020",
"access_key": "accessKey1",
"secret_key": "secretKey1",
"bucket_name": "authentik-media",
"custom_domain": "localhost:8020/authentik-media",
"secure_urls": False,
},
"backend": "file",
"s3": {
"endpoint": "http://localhost:8020",
"access_key": "accessKey1",
"secret_key": "secretKey1",
"bucket_name": "authentik-media",
"custom_domain": "localhost:8020/authentik-media",
"secure_urls": False,
},
},
"tenants": {
+2 -2
View File
@@ -42,7 +42,7 @@ base = {
"image": authentik_image,
"ports": ["${COMPOSE_PORT_HTTP:-9000}:9000", "${COMPOSE_PORT_HTTPS:-9443}:9443"],
"restart": "unless-stopped",
"volumes": ["./media:/media", "./custom-templates:/templates"],
"volumes": ["./media:/data/media", "./custom-templates:/templates"],
},
"worker": {
"command": "worker",
@@ -62,7 +62,7 @@ base = {
"user": "root",
"volumes": [
"/var/run/docker.sock:/var/run/docker.sock",
"./media:/media",
"./media:/data/media",
"./certs:/certs",
"./custom-templates:/templates",
],