home · contact · privacy
Fix.
[config] / buster / setup_scripts / setup_peertube.sh
index 77c9302af50373f77d2a1a7b347c0e252b259cdf..f57ec40b9b02b9d30ae274511c70a772424c8d1d 100755 (executable)
@@ -63,10 +63,12 @@ sed -i "s/password: 'peertube'/password: '${db_pw}'/g" config/production.yaml
 cp /var/www/peertube/peertube-latest/support/nginx/peertube /etc/nginx/sites-available/peertube
 sed -i "s/peertube.example.com/${domain}/g" /etc/nginx/sites-available/peertube
 ln -s /etc/nginx/sites-available/peertube /etc/nginx/sites-enabled/peertube
-service nginx restart
 
 # Configure systemd and start PeerTube through it.
 cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/
 systemctl daemon-reload
 systemctl enable peertube
 systemctl start peertube
+
+# Restart NGINX.
+service nginx restart