Last active
March 26, 2025 00:18
Revisions
-
Informatic revised this gist
Jan 15, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ 1. Format your storage 2. Configure networking (it's easiest with LuCI, or just take a look at OpenWRT howtos) 3. Configure `/storage` by adding proper options in `/etc/config/fstab`, or, again, just clicking around in LuCI 4. `opkg update && opkg install tor` 5. Copy proper configuration, namely `/etc/tor/torrc` and `/etc/config/uhttpd` 6. Reboot (or `/etc/init.d/uhttpd restart && /etc/init.d/tor restart`) -
Informatic revised this gist
Jan 15, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ 1. Format your storage 2. Configure networking (again, it's easiest with LuCI, or just take a look at OpenWRT howtos) 3. Configure `/storage` by adding proper options in `/etc/config/fstab`, or just clicking around in LuCI 4. `opkg update && opkg install tor` 5. Copy proper configuration, namely `/etc/tor/torrc` and `/etc/config/uhttpd` 6. Reboot (or `/etc/init.d/uhttpd restart && /etc/init.d/tor restart`) -
Informatic created this gist
Jan 15, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ 1. Format your storage 2. Configure networking (again, it's easiest with LuCI, or just take a look at OpenWRT howtos) 3. Configure `/storage` by adding proper options in /etc/config/fstab, or just clicking around in LuCI 4. `opkg update && opkg install tor` 5. Copy proper configuration, namely `/etc/tor/torrc` and `/etc/config/uhttpd` 6. Reboot (or `/etc/init.d/uhttpd restart && /etc/init.d/tor restart`) 7. Check `/etc/tor/hidden_service/hostname` for your public `.onion` address 8. ... 9. PROFIT! 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #### /etc/config/fstab # [ ... ] config mount # Put your storage partition UUID here option uuid '0000-0000' option target '/storage' option enabled '1' 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #### /etc/config/uhttpd # [ ... ] config uhttpd 'tor' list listen_http '127.0.0.1:8000' option home '/storage/tor' 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #### /etc/tor/torrc ## Basic configuration Log notice syslog RunAsDaemon 1 DataDirectory /etc/tor User tor ## Hidden service configuration HiddenServiceDir /etc/tor/hidden_service HiddenServicePort 80 127.0.0.1:8000