Automatically redirect Tor traffic to onion (Hopefully efficiently as the if processing isn't intensive)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Get New Exit Node list ever 6 Hours | |
57 */6 * * * `curl https://check.torproject.org/cgi-bin/TorBulkExitList.py\?ip\=<yourip> | awk '{print $0" TOREX;"}' > /etc/nginx/includes/torexit.ips && service nginx restart` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Create a geo region for Tor Exits | |
geo $torexit { | |
default NOEXIT; | |
include includes/torexit.ips; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Check on every request if Tor Exit, potentially inefficient, but the geolookup is quicker than a long list of ifs. | |
if ($torexit = TOREX) { | |
rewrite ^ https://xxxxxxxxxxxxxxxxxx.onion$request_uri? permanent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's really interesting; thanks, Chris - I'll look it over.