diff options
Diffstat (limited to '.env.example')
| -rw-r--r-- | .env.example | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/.env.example b/.env.example index 0789b28..993399a 100644 --- a/.env.example +++ b/.env.example | |||
| @@ -227,4 +227,31 @@ | |||
| 227 | # NGIT_REPOSITORY_WHITELIST=bitcoin-core,linux,rust | 227 | # NGIT_REPOSITORY_WHITELIST=bitcoin-core,linux,rust |
| 228 | # Note: Cannot be used with NGIT_ARCHIVE_READ_ONLY=true (mutually exclusive) | 228 | # Note: Cannot be used with NGIT_ARCHIVE_READ_ONLY=true (mutually exclusive) |
| 229 | # Note: When set, NIP-11 curation field will indicate curated repository acceptance | 229 | # Note: When set, NIP-11 curation field will indicate curated repository acceptance |
| 230 | # NGIT_REPOSITORY_WHITELIST= \ No newline at end of file | 230 | # NGIT_REPOSITORY_WHITELIST= |
| 231 | |||
| 232 | # ============================================================================ | ||
| 233 | # REPOSITORY BLACKLIST | ||
| 234 | # ============================================================================ | ||
| 235 | |||
| 236 | # Blacklist specific repos/pubkeys/identifiers to reject | ||
| 237 | # Comma-separated list supporting three formats (same as whitelist formats): | ||
| 238 | # <npub> - Block all repos from this pubkey | ||
| 239 | # <npub>/<identifier> - Block specific repo | ||
| 240 | # <identifier> - Block repos with this identifier (any pubkey) | ||
| 241 | # | ||
| 242 | # Blacklist takes precedence over ALL whitelists: | ||
| 243 | # - Blacklisted repos are rejected even if they match archive or repository whitelists | ||
| 244 | # - Blacklisted repos are rejected even if they list our service | ||
| 245 | # | ||
| 246 | # Rejection reasons indicate the match type: | ||
| 247 | # - "Repository owner <npub> is blacklisted" (npub format) | ||
| 248 | # - "Repository <npub>/<identifier> is blacklisted" (npub/identifier format) | ||
| 249 | # - "Repository identifier <identifier> is blacklisted" (identifier format) | ||
| 250 | # | ||
| 251 | # CLI: --repository-blacklist <list> | ||
| 252 | # Default: (empty - no repositories are blacklisted) | ||
| 253 | # Examples: | ||
| 254 | # NGIT_REPOSITORY_BLACKLIST=npub1spam... | ||
| 255 | # NGIT_REPOSITORY_BLACKLIST=npub1alice.../bad-repo | ||
| 256 | # NGIT_REPOSITORY_BLACKLIST=malware-repo,spam-repo | ||
| 257 | # NGIT_REPOSITORY_BLACKLIST= \ No newline at end of file | ||