summaryrefslogtreecommitdiff
path: root/packages/backend
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-09-05 15:04:53 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-09-05 15:04:53 +0900
commit7258888e76890e271620378404bbb952a7667b8b (patch)
treeabebe4296f993ac0c1fb4cffa7854401d7aa0a5b /packages/backend
parentenhance(backend): タイムライン等の有効期限を設定可能に (diff)
downloadmisskey-7258888e76890e271620378404bbb952a7667b8b.tar.gz
misskey-7258888e76890e271620378404bbb952a7667b8b.tar.bz2
misskey-7258888e76890e271620378404bbb952a7667b8b.zip
clean up
Diffstat (limited to 'packages/backend')
-rw-r--r--packages/backend/src/config.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts
index ef4ed6965c..ddfe560d82 100644
--- a/packages/backend/src/config.ts
+++ b/packages/backend/src/config.ts
@@ -68,8 +68,6 @@ type Source = {
maxFileSize?: number;
- accesslog?: string;
-
clusterLimit?: number;
id: string;
@@ -132,7 +130,6 @@ export type Config = {
proxyBypassHosts: string[] | undefined;
allowedPrivateNetworks: string[] | undefined;
maxFileSize: number | undefined;
- accesslog: string | undefined;
clusterLimit: number | undefined;
id: string;
outgoingAddress: string | undefined;
@@ -236,7 +233,6 @@ export function loadConfig(): Config {
proxyBypassHosts: config.proxyBypassHosts,
allowedPrivateNetworks: config.allowedPrivateNetworks,
maxFileSize: config.maxFileSize,
- accesslog: config.accesslog,
clusterLimit: config.clusterLimit,
outgoingAddress: config.outgoingAddress,
outgoingAddressFamily: config.outgoingAddressFamily,