diff options
Diffstat (limited to '.env.example')
| -rw-r--r-- | .env.example | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/.env.example b/.env.example index 6a93d78..2dc5266 100644 --- a/.env.example +++ b/.env.example | |||
| @@ -165,4 +165,28 @@ | |||
| 165 | # tracked separately and retried after this expiration period | 165 | # tracked separately and retried after this expiration period |
| 166 | # CLI: --naughty-list-expiration-hours <hours> | 166 | # CLI: --naughty-list-expiration-hours <hours> |
| 167 | # Default: 12 | 167 | # Default: 12 |
| 168 | # NGIT_NAUGHTY_LIST_EXPIRATION_HOURS=12 \ No newline at end of file | 168 | # NGIT_NAUGHTY_LIST_EXPIRATION_HOURS=12 |
| 169 | |||
| 170 | # ============================================================================ | ||
| 171 | # GRASP-05 ARCHIVE MODE | ||
| 172 | # ============================================================================ | ||
| 173 | |||
| 174 | # Accept all repository announcements (⚠️ WARNING: Storage/bandwidth risk) | ||
| 175 | # When enabled, any repository can be mirrored to this relay | ||
| 176 | # CLI: --archive-all | ||
| 177 | # Default: false | ||
| 178 | # NGIT_ARCHIVE_ALL=false | ||
| 179 | |||
| 180 | # Whitelist specific repos/pubkeys/identifiers for archiving | ||
| 181 | # Comma-separated list supporting three formats: | ||
| 182 | # <npub> - Archive all repos from this pubkey | ||
| 183 | # <npub>/<identifier> - Archive specific repo | ||
| 184 | # <identifier> - Archive repos with this identifier (any pubkey) | ||
| 185 | # | ||
| 186 | # CLI: --archive-whitelist <list> | ||
| 187 | # Default: (empty) | ||
| 188 | # Examples: | ||
| 189 | # NGIT_ARCHIVE_WHITELIST=npub1alice... | ||
| 190 | # NGIT_ARCHIVE_WHITELIST=npub1alice...,npub1bob.../linux | ||
| 191 | # NGIT_ARCHIVE_WHITELIST=bitcoin-core,linux,rust | ||
| 192 | # NGIT_ARCHIVE_WHITELIST= \ No newline at end of file | ||