From f9a28b78ad32bd54ea35afd456b27b0dedf6c9a5 Mon Sep 17 00:00:00 2001 From: tfasano1 Date: Thu, 29 Jul 2021 16:52:44 -0400 Subject: Note that ssl certificates not neded for tor --- auth.html | 2 +- tor.html | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/auth.html b/auth.html index 2418b97..49ee445 100644 --- a/auth.html +++ b/auth.html @@ -114,7 +114,7 @@

Reload nginx and you're good to go!

- Contributor - tomfasano.xyz + Contributor - tomfasano.co diff --git a/tor.html b/tor.html index 86162a8..6711d5c 100644 --- a/tor.html +++ b/tor.html @@ -89,7 +89,10 @@ HiddenServicePort 80 127.0.0.1:80
apt update
 apt install tor
-

Contributor - tomfasano.xyz

+

Note:

+

You do not need to run certbot for an ssl certificate. HTTP over tor is plenty secure!

+ +

Contributor - tomfasano.co

-- cgit v1.2.3 From b5c60e89f57078d5751a784faa909b4038ac6621 Mon Sep 17 00:00:00 2001 From: diamonop1234 <82997738+diamonop1234@users.noreply.github.com> Date: Fri, 30 Jul 2021 09:20:51 +0200 Subject: Update peertube.html --- peertube.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/peertube.html b/peertube.html index e38a2ba..5b08dbb 100644 --- a/peertube.html +++ b/peertube.html @@ -65,9 +65,15 @@ exit
sudo -u peertube mkdir config storage versions
 sudo -u peertube chmod 750 config
-

Finally, a PeerTube release can be downloaded from the GitHub page and installed using yarn:

+

Finally, a PeerTube release can be downloaded from the GitHub page using the VERSION variable from before:

-
cd versions
+        
cd /var/www/peertube/versions
+sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
+sudo -u peertube unzip -q peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
+ +

The downloaded release can then be symbolically linked to /var/www/peertube/peertube-latest and yarn is used to install PeerTube:

+ +

 sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
 cd ./peertube-latest && sudo -H -u peertube yarn install --production --pure-lockfile
-- cgit v1.2.3