Apply conversion script to all *.md files. authored by Alexander Hansen Færøy's avatar Alexander Hansen Færøy
==== Debian/Ubuntu ==== #### Debian/Ubuntu
1. [https://support.torproject.org/apt/tor-deb-repo/ Enable the Torproject package repository] to get the last version of tor 1. [Enable the Torproject package repository](https://support.torproject.org/apt/tor-deb-repo/) to get the last version of tor
This can be considered optional on Debian but is not optional on Ubuntu. Do not use the packages in Ubuntu's universe. Get the repository sources to add to your /etc/apt/sources.list by running the configurator [https://support.torproject.org/apt/tor-deb-repo/ here]. Also ensure you import the GPG keys. This will make sure that you're running the latest stable version of tor. This can be considered optional on Debian but is not optional on Ubuntu. Do not use the packages in Ubuntu's universe. Get the repository sources to add to your /etc/apt/sources.list by running the configurator [here](https://support.torproject.org/apt/tor-deb-repo/). Also ensure you import the GPG keys. This will make sure that you're running the latest stable version of tor.
2. Install the `tor` package 2. Install the `tor` package
{{{ ```
apt update && apt install tor apt update && apt install tor
}}} ```
3. Put the configuration file `/etc/tor/torrc` in place: 3. Put the configuration file `/etc/tor/torrc` in place:
{{{ ```
#change the nickname "myNiceRelay" to a name that you like #change the nickname "myNiceRelay" to a name that you like
Nickname myNiceRelay Nickname myNiceRelay
ORPort 443 ORPort 443
...@@ -19,9 +19,9 @@ SocksPort 0 ...@@ -19,9 +19,9 @@ SocksPort 0
ControlSocket 0 ControlSocket 0
# Change the email address bellow and be aware that it will be published # Change the email address bellow and be aware that it will be published
ContactInfo tor-operator@your-emailaddress-domain ContactInfo tor-operator@your-emailaddress-domain
}}} ```
4. Restart the tor daemon so your configuration changes take effect: 4. Restart the tor daemon so your configuration changes take effect:
{{{ ```
systemctl restart tor@default systemctl restart tor@default
}}} ```