Compare commits

...

2 commits

Author SHA1 Message Date
eyjhb
f9df7a63c5
synapse: remove todo 2025-01-09 20:55:56 +01:00
eyjhb
159c365382
miniflux: proxy all media 2025-01-09 20:55:45 +01:00
2 changed files with 1 additions and 3 deletions

View file

@ -56,7 +56,6 @@ in {
max_upload_size = max_upload_size; max_upload_size = max_upload_size;
# only authenticated media # only authenticated media
# TODO: Should default to true at some point
enable_authenticated_media = true; enable_authenticated_media = true;
# retentien policies # retentien policies

View file

@ -19,12 +19,11 @@ in {
DISABLE_LOCAL_AUTH = "true"; DISABLE_LOCAL_AUTH = "true";
# use auth proxy # use auth proxy
# TODO: This should be configureable
AUTH_PROXY_HEADER = config.mine.shared.lib.authelia.protectedHeaders.username; AUTH_PROXY_HEADER = config.mine.shared.lib.authelia.protectedHeaders.username;
AUTH_PROXY_USER_CREATION = "true"; AUTH_PROXY_USER_CREATION = "true";
# For privacy, proxy images instead of hotlinking # For privacy, proxy images instead of hotlinking
MEDIA_PROXY_RESOURCE_TYPES = "image"; MEDIA_PROXY_RESOURCE_TYPES = "image,audio,video";
MEDIA_PROXY_MODE = "all"; MEDIA_PROXY_MODE = "all";
}; };
}; };