Compare commits

..

2 Commits

Author SHA1 Message Date
Xavier Morel ad8b4cd99b feat(monitoring): update config (try to fix loki compaction)
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
2026-06-09 15:38:59 +02:00
Xavier Morel 3052d488de feat(vault): update vault SSO config 2026-06-09 13:07:51 +02:00
2 changed files with 12 additions and 6 deletions
+10 -4
View File
@@ -31,10 +31,16 @@
replication_factor = 1; replication_factor = 1;
path_prefix = "/var/lib/loki"; path_prefix = "/var/lib/loki";
}; };
storage_config.filesystem.directory = "/var/lib/loki/chunks"; storage_config = {
table_manager = { tsdb_shipper = {
retention_deletes_enabled = true; active_index_directory = "/var/lib/loki/index";
retention_period = config.globals.retention; cache_location = "/var/lib/loki/index_cache";
cache_ttl = "24h";
};
};
compactor = {
retention_enabled = true;
delete_request_store = "filesystem";
}; };
pattern_ingester.enabled = true; pattern_ingester.enabled = true;
limits_config = { limits_config = {
+2 -2
View File
@@ -27,14 +27,14 @@ in
ORG_CREATION_USERS = config.globals.master.email; ORG_CREATION_USERS = config.globals.master.email;
SSO_ENABLED = true; SSO_ENABLED = true;
SSO_AUTH_ONLY_NOT_SESSION = true; # SSO_AUTH_ONLY_NOT_SESSION = true;
SSO_AUTHORITY = "https://${auth_host}/application/o/vaultwarden/"; SSO_AUTHORITY = "https://${auth_host}/application/o/vaultwarden/";
SSO_CLIENT_ID = oidc.oidc_client_id; SSO_CLIENT_ID = oidc.oidc_client_id;
SSO_CLIENT_SECRET = oidc.oidc_secret_id; SSO_CLIENT_SECRET = oidc.oidc_secret_id;
SSO_SCOPES = "openid profile email offline_access"; SSO_SCOPES = "openid profile email offline_access";
SSO_ALLOW_UNKNOWN_EMAIL_VERIFICATION = false; SSO_ALLOW_UNKNOWN_EMAIL_VERIFICATION = false;
SSO_CLIENT_CACHE_EXPIRATION = 0; SSO_CLIENT_CACHE_EXPIRATION = 0;
SSO_ONLY = false; # Set to true to disable email and master password login and require SSO SSO_ONLY = true; # Set to true to disable email and master password login and require SSO
SSO_SIGNUPS_MATCH_EMAIL = true; # Match first SSO login to an existing account by email SSO_SIGNUPS_MATCH_EMAIL = true; # Match first SSO login to an existing account by email
}; };
dbBackend = "postgresql"; dbBackend = "postgresql";