summaryrefslogtreecommitdiff
path: root/packages/backend/src/config.ts
diff options
context:
space:
mode:
authorMarie <github@yuugi.dev>2025-03-19 17:40:49 +0000
committerMarie <github@yuugi.dev>2025-03-19 17:40:49 +0000
commit65d5f1e081895ec4698cb30d8201a7675d1f8708 (patch)
tree8c2d4e19d5e71aca6b41d33a2a7582b0c7f7e5c9 /packages/backend/src/config.ts
parentmerge: fix notification dot (!946) (diff)
parentadjust compression fallback (diff)
downloadsharkey-65d5f1e081895ec4698cb30d8201a7675d1f8708.tar.gz
sharkey-65d5f1e081895ec4698cb30d8201a7675d1f8708.tar.bz2
sharkey-65d5f1e081895ec4698cb30d8201a7675d1f8708.zip
merge: Optionally enable websocket compression (!921)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/921 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: Marie <github@yuugi.dev>
Diffstat (limited to 'packages/backend/src/config.ts')
-rw-r--r--packages/backend/src/config.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts
index 61c7fcb6c7..067672fd79 100644
--- a/packages/backend/src/config.ts
+++ b/packages/backend/src/config.ts
@@ -136,6 +136,8 @@ type Source = {
preSave?: boolean;
maxAge?: number;
};
+
+ websocketCompression?: boolean;
};
export type Config = {
@@ -253,6 +255,8 @@ export type Config = {
preSave: boolean;
maxAge: number;
};
+
+ websocketCompression?: boolean;
};
export type FulltextSearchProvider = 'sqlLike' | 'sqlPgroonga' | 'meilisearch' | 'sqlTsvector';
@@ -401,6 +405,7 @@ export function loadConfig(): Config {
preSave: config.activityLogging?.preSave ?? false,
maxAge: config.activityLogging?.maxAge ?? (1000 * 60 * 60 * 24 * 30),
},
+ websocketCompression: config.websocketCompression ?? false,
};
}
@@ -535,7 +540,7 @@ function applyEnvOverrides(config: Source) {
// these are all the settings that can be overridden
- _apply_top([['url', 'port', 'address', 'socket', 'chmodSocket', 'disableHsts', 'id', 'dbReplications']]);
+ _apply_top([['url', 'port', 'address', 'socket', 'chmodSocket', 'disableHsts', 'id', 'dbReplications', 'websocketCompression']]);
_apply_top(['db', ['host', 'port', 'db', 'user', 'pass', 'disableCache']]);
_apply_top(['dbSlaves', Array.from((config.dbSlaves ?? []).keys()), ['host', 'port', 'db', 'user', 'pass']]);
_apply_top([