Skip to content

Commit

Permalink
README: how to blacklist some .onion sites
Browse files Browse the repository at this point in the history
  • Loading branch information
starius committed Aug 22, 2015
1 parent 1496d40 commit 9e6e766
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,16 @@ server {
}
}
```

To blacklist some .onion sites:

```nginx
server {
listen 80;
server_name
.badonion12345678.onion.gq
.anotherbadonion1.onion.gq
;
return 403;
}
```

0 comments on commit 9e6e766

Please sign in to comment.