diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2020-04-12 20:32:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-12 20:32:34 +0900 |
| commit | 36b9a0d42fa4bd7036d5d4a11203006d0ceb59f0 (patch) | |
| tree | 6fb00ab7bdf952ebb7e0c6e705fc5837a8022689 /src/config | |
| parent | Resolve #6242 (diff) | |
| download | misskey-36b9a0d42fa4bd7036d5d4a11203006d0ceb59f0.tar.gz misskey-36b9a0d42fa4bd7036d5d4a11203006d0ceb59f0.tar.bz2 misskey-36b9a0d42fa4bd7036d5d4a11203006d0ceb59f0.zip | |
プロキシの除外ホスト (#6244)
* プロキシの除外ホスト
* オブジェクトストレージとの通信にProxyを使うかを選択できるように
* fix lint
* コメント
Co-authored-by: rinsuki <428rinsuki+git@gmail.com>
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/types.ts b/src/config/types.ts index a33901bde6..4f025750b0 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -35,6 +35,7 @@ export type Source = { proxy?: string; proxySmtp?: string; + proxyBypassHosts?: string[]; accesslog?: string; |