doc/torhiddenservice.md

48 lines
992 B
Markdown
Raw Normal View History

2014-05-13 10:59:34 +02:00
# Using Yunohost as a Tor Hidden Service
See https://www.torproject.org/docs/tor-hidden-service.html.en
## Installing Tor
```bash
apt-get install tor
```
## Configuring our hidden service
2014-05-13 17:25:11 +02:00
Edit /etc/tor/torrc, and add these lines:
2014-05-13 10:59:34 +02:00
2014-05-13 11:07:24 +02:00
```bash
2014-05-13 10:59:34 +02:00
HiddenServiceDir /var/lib/tor/hidden_service/
HiddenServicePort 80 127.0.0.1:80
HiddenServicePort 443 127.0.0.1:443
```
## Restart Tor
```bash
service tor restart
```
## Get your Tor Hidden Service hostname
```bash
cat /path/to/hidden_service/keys/hostname
```
Your domain looks like *random123456789.onion*
## Add the .onion domain to Yunohost
```bash
yunohost domain add random123456789.onion
```
2014-05-13 11:07:24 +02:00
2014-05-13 11:22:11 +02:00
## Avoid SSO redirection (optional)
2014-05-13 17:25:11 +02:00
If you want to avoid being redirected to the SSO portal at login, you can deactivate SSOwat for this specific tor domain, by editing the file `/etc/nginx/conf.d/random123456789.onion.conf` and commenting the following line (two times):
2014-05-13 11:22:11 +02:00
```bash
#access_by_lua_file /usr/share/ssowat/access.lua;
```