added missed secrets

This commit is contained in:
gyurix
2025-01-02 15:48:41 +01:00
parent 40f8bd4b60
commit 21ca343542
3 changed files with 10 additions and 2 deletions

View File

@@ -6,6 +6,7 @@
}, },
"outlineapp": { "outlineapp": {
"SECRET_KEY": "#SECRET_KEY", "SECRET_KEY": "#SECRET_KEY",
"UTILS_SECRET": "#UTILS_SECRET",
"DATABASE_URL": "postgres://#DB_USER:#DB_PASSWORD@outlinepostgres-db:5432/#DB_NAME" "DATABASE_URL": "postgres://#DB_USER:#DB_PASSWORD@outlinepostgres-db:5432/#DB_NAME"
} }
} }

View File

@@ -111,7 +111,7 @@
"REDIS_URL": "redis://outlineredis-app:6379" "REDIS_URL": "redis://outlineredis-app:6379"
}, },
{ {
"URL": "" "URL": "$OUTLINE_DOMAIN"
}, },
{ {
"PORT": 3000 "PORT": 3000

View File

@@ -6,7 +6,14 @@
"key": "SECRET_KEY", "key": "SECRET_KEY",
"value": "", "value": "",
"required": "true", "required": "true",
"generated": "random|md5|12" "generated": "random|md5|32"
},
{
"description": "Util secret key",
"key": "UTILS_SECRET",
"value": "",
"required": "true",
"generated": "random|md5|32"
}, },
{ {
"description": "Postgres database name", "description": "Postgres database name",