diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-09-27 22:30:43 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-09-27 22:30:43 +0900 |
| commit | 9a7aea2b3c41cea1b24913024ab56150ab5a9cd6 (patch) | |
| tree | 61dc7b8fbbb130b227764fcc043d4669bac0a10c | |
| parent | 02bbda4afbe1edefac250dfdbf6a34f5d5d37b18 (diff) | |
modified content/peertube.md
| -rw-r--r-- | content/peertube.md | 12 |
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 ``` |
