[tor-commits] [community/staging] Move middle-guard setup to child page

pili at torproject.org pili at torproject.org
Fri Aug 2 11:41:21 UTC 2019


commit 95fdd883f43dca9e7ca42acb44cc489ab4a41e30
Author: gus <gus at torproject.org>
Date:   Fri Jul 5 15:29:47 2019 -0400

    Move middle-guard setup to child page
---
 .../technical-setup/centosrhel/contents.lr         | 58 -----------------
 .../technical-setup/debianubuntu/contents.lr       | 44 -------------
 .../technical-setup/fedora/contents.lr             | 37 -----------
 .../technical-setup/freebsd/contents.lr            | 75 ----------------------
 4 files changed, 214 deletions(-)

diff --git a/content/relay-operations/technical-setup/centosrhel/contents.lr b/content/relay-operations/technical-setup/centosrhel/contents.lr
deleted file mode 100644
index e8a9a51..0000000
--- a/content/relay-operations/technical-setup/centosrhel/contents.lr
+++ /dev/null
@@ -1,58 +0,0 @@
-_model: page
----
-title: CentOS/RHEL
----
-html: two-columns-page.html
----
-section: relay operations
----
-key: 5
----
-section_id: relay-operations
----
-body:
-
-# 1. Enable the EPEL repository
-
-To install `tor` package on CentOS/RHEL, you need to install the [EPEL](https://fedoraproject.org/wiki/EPEL) repository first:
-
-`yum install epel-release`
-
-# 2. Install the tor package and verify the EPEL signing key
-
-`yum install tor`
-
-When you install the first package from the EPEL repository you will be asked about verifying the EPEL GPG signing key. Please ensure the key matches with the one available on the [Fedora Project website](https://getfedora.org/keys/).
-
-# 3. Put the tor configuration file `/etc/tor/torrc` in place
-
-```
-#change the nickname "myNiceRelay" to a name that you like
-Nickname myNiceRelay
-ORPort 9001
-SocksPort 0
-ExitRelay 0
-# Change the email address bellow and be aware that it will be published
-ContactInfo tor-operator at your-emailaddress-domain
-```
-
-# 4. Enable and start your Tor relay
-
-CentOS 7 / RHEL 7:
-
-```
-systemctl enable tor
-systemctl start tor
-```
-
-CentOS 6 / RHEL 6:
-
-```
-service tor enable
-service tor start
-```
-
----
-_template: layout.html
----
-color: primary
diff --git a/content/relay-operations/technical-setup/debianubuntu/contents.lr b/content/relay-operations/technical-setup/debianubuntu/contents.lr
deleted file mode 100644
index 79c652e..0000000
--- a/content/relay-operations/technical-setup/debianubuntu/contents.lr
+++ /dev/null
@@ -1,44 +0,0 @@
-_model: page
----
-title: Debian/Ubuntu
----
-html: two-columns-page.html
----
-section: relay operations
----
-section_id: relay-operations
----
-key: 2
----
-body:
-
-# 1. Configure Tor Package Repository
-
-Enable the Torproject package repository by following the instructions **[here](https://2019.www.torproject.org/docs/debian.html.en#ubuntu)**.
-
-# 2. Package Installation
-
-Install the `tor` package:
-
-`apt update && apt install tor`
-
-# 3. Configuration File
-
-Put the configuration file `/etc/tor/torrc` in place:
-
-```
-#change the nickname "myNiceRelay" to a name that you like
-Nickname myNiceRelay
-ORPort 443
-ExitRelay 0
-SocksPort 0
-ControlSocket 0
-# Change the email address bellow and be aware that it will be published
-ContactInfo tor-operator at your-emailaddress-domain
-```
-
-# 4. Restart the Service
-
-Restart the tor daemon so your configuration changes take effect:
-
-`systemctl restart tor at default`
diff --git a/content/relay-operations/technical-setup/fedora/contents.lr b/content/relay-operations/technical-setup/fedora/contents.lr
deleted file mode 100644
index 0a561f8..0000000
--- a/content/relay-operations/technical-setup/fedora/contents.lr
+++ /dev/null
@@ -1,37 +0,0 @@
-_model: page
----
-title: Fedora
----
-html: two-columns-page.html
----
-key: 3
----
-section: relay operations
----
-section_id: relay-operations
----
-_template: layout.html
----
-body:
-
-# 1.  Install the tor package:
-
-`dnf install tor`
-
-# 2. Put the tor configuration file `/etc/tor/torrc` in place:
-
-```
-#change the nickname "myNiceRelay" to a name that you like
-Nickname myNiceRelay
-ORPort 9001
-ExitRelay 0
-# Change the email address bellow and be aware that it will be published
-ContactInfo tor-operator at your-emailaddress-domain
-```
-
-# 3. Start the tor daemon and make sure it starts at boot:
-
-```
-systemctl enable tor
-systemctl start tor
-```
diff --git a/content/relay-operations/technical-setup/freebsd/contents.lr b/content/relay-operations/technical-setup/freebsd/contents.lr
deleted file mode 100644
index 3323fd5..0000000
--- a/content/relay-operations/technical-setup/freebsd/contents.lr
+++ /dev/null
@@ -1,75 +0,0 @@
-_model: page
----
-title: FreeBSD
----
-html: two-columns-page.html
----
-section: relay operations
----
-key: 2
----
-section_id: relay-operations
----
-body:
-
-## 1. Install the tor package
-
-`pkg install tor ca_root_nss`
-
-or for alpha releases:
-
-`pkg install tor-devel ca_root_nss`
-
-## 2. Put the configuration file `/usr/local/etc/tor/torrc` in place
-
-```
-#change the nickname "myNiceRelay" to a name that you like
-Nickname myNiceRelay
-ORPort 9001
-ExitRelay 0
-SocksPort 0
-# Change the email address bellow and be aware that it will be published
-ContactInfo tor-operator at your-emailaddress-domain
-Log notice syslog
-```
-
-## 3. Ensure that the `random_id` sysctl setting is enabled:
-
-```
-echo "net.inet.ip.random_id=1" >> /etc/sysctl.conf
-sysctl net.inet.ip.random_id=1
-```
-
-## 4. Start the tor daemon and make sure it starts at boot:
-
-```
-sysrc tor_enable=YES
-service tor start
-```
-
-### Optional but recommended
-
-To get package updates faster after they have been build it is best to switch from the "quarterly" with "latest" repository.
-
-Create the following folder: 
-
-`mkdir -p /usr/local/etc/pkg/repos`
-
-and create the file `/usr/local/etc/pkg/repos/FreeBSD.conf` with the following content: 
-
-```
-FreeBSD: { enabled: no }
-
-FreeBSDlatest: {
-  url: "pkg+https://pkg.FreeBSD.org/${ABI}/latest",
-  mirror_type: "srv",
-  signature_type: "fingerprints",
-  fingerprints: "/usr/share/keys/pkg",
-  enabled: yes
-}
-```
-
----
-_template: layout.html
----
-color: 





More information about the tor-commits mailing list