summaryrefslogtreecommitdiff
path: root/content/peertube.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/peertube.md')
-rw-r--r--content/peertube.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/peertube.md b/content/peertube.md
index 97569e7..14115b6 100644
--- a/content/peertube.md
+++ b/content/peertube.md
@@ -157,7 +157,7 @@ Add the hostname:
```yaml
webserver:
https: true
- hostname: "peertube.thesiah.xyz"
+ hostname: "video.thesiah.xyz"
port: 443
```
@@ -181,7 +181,7 @@ An email to generate the admin user:
admin:
# Used to generate the root user at first startup
# And to receive emails from the contact form
- email: "peertube@thesiah.xyz"
+ email: "video@thesiah.xyz"
```
And **optionally,** email server information:
@@ -194,12 +194,12 @@ smtp:
sendmail: null
hostname: mail.thesiah.xyz
port: 465 # If you use StartTLS: 587
- username: videos@thesiah.xyz
+ username: video@thesiah.xyz
password: your_email_password
tls: true # If you use StartTLS: false
disable_starttls: false
ca_file: null # Used for self signed certificates
- from_address: "videos@thesiah.xyz"
+ from_address: "video@thesiah.xyz"
```
At this point, we have done all we need to do as the PeerTube user. Run
@@ -225,7 +225,7 @@ your hostname, and `$(PEERTUBE_HOST)` with your localhost and port,
which by default should be `127.0.0.1:9000`:
```sh
-sed -i 's/${WEBSERVER_HOST}/videos.thesiah.xyz/g' /etc/nginx/sites-available/peertube
+sed -i 's/${WEBSERVER_HOST}/video.thesiah.xyz/g' /etc/nginx/sites-available/peertube
sed -i 's/${PEERTUBE_HOST}/127.0.0.1:9000/g' /etc/nginx/sites-available/peertube
```
@@ -243,7 +243,7 @@ our PeerTube instance. Just run the following:
```sh
systemctl stop nginx
-certbot certonly --standalone -d videos.thesiah.xyz
+certbot certonly --standalone -d video.thesiah.xyz
systemctl restart nginx
```