diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-12-16 19:55:16 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-12-16 19:55:16 +0900 |
| commit | 99b0b436e09f901da4aa5b368f1c2ac87ce719da (patch) | |
| tree | cfb18d92ce089a9cddd32eb10848310616cb9e30 | |
| parent | Revert "Merge commit from fork" (diff) | |
| download | misskey-99b0b436e09f901da4aa5b368f1c2ac87ce719da.tar.gz misskey-99b0b436e09f901da4aa5b368f1c2ac87ce719da.tar.bz2 misskey-99b0b436e09f901da4aa5b368f1c2ac87ce719da.zip | |
Update example.yml
| -rw-r--r-- | .config/example.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.config/example.yml b/.config/example.yml index 489cceec34..2d1e82ee0b 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -112,8 +112,18 @@ port: 3000 # Any format supported by Fastify is accepted. # Default: trust all proxies (i.e. trustProxy: true) # See: https://fastify.dev/docs/latest/reference/server/#trustproxy +# To improve security, we recommend that you configure your settings appropriately. +# Incorrect configuration can cause issues such as difficulty signing in, +# so please configure your settings carefully. # -# trustProxy: 1 +#trustProxy: [ +# '10.0.0.0/8' +# '172.16.0.0/12' +# '192.168.0.0/16' +# '127.0.0.1/32' +# '::1/128' +# 'fc00::/7' +#] # ┌──────────────────────────┐ #───┘ PostgreSQL configuration └──────────────────────────────── |