Last active
June 27, 2022 16:13
-
-
Save stokito/2a7ab43cb409afa9eef8061dd12ed82f to your computer and use it in GitHub Desktop.
Single Onion Service
This file contains hidden or 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
# https://riseup.net/ru/security/network-security/tor/onionservices-best-practices | |
# https://www.kicksecure.com/wiki/Non_Anonymous_Onion_Encryption_and_NAT_Traversal | |
# https://tor.stackexchange.com/questions/14674/problems-setting-up-a-single-onion-service | |
# https://medium.com/hackernoon/how-does-tor-really-work-c3242844e11f | |
# https://www.youtube.com/watch?v=VmsFxBEN3fc | |
# https://www.youtube.com/watch?v=HQXRURfrf8w | |
# Edit /etc/tor/torrc | |
SOCKSPort 0 | |
HiddenServiceDir /var/lib/tor/YOUR_HIDDEN_SERVICE/ | |
HiddenServicePort 80 127.0.0.1:80 | |
HiddenServicePort 443 127.0.0.1:443 | |
HiddenServicePort 22 127.0.0.1:22 | |
HiddenServiceSingleHopMode 1 | |
HiddenServiceNonAnonymousMode 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/alecmuffett/videonion/blob/master/single-onion.torrc