Browse Source

Fix web install

Bob Mottram 7 years ago
parent
commit
4209245e20
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/freedombone-app-peertube

+ 3
- 3
src/freedombone-app-peertube View File

@@ -316,7 +316,7 @@ function peertube_setup_web {
316 316
         function_check nginx_disable_sniffing
317 317
         nginx_disable_sniffing $PEERTUBE_DOMAIN_NAME
318 318
 
319
-        echo '  add_header Strict-Transport-Security max-age=15768000;' >> $peertube_nginx_site
319
+        echo '  add_header Strict-Transport-Security max-age=15768000;' >> $peertube_nginx_file
320 320
         echo '' >> $peertube_nginx_file
321 321
         echo '  location / {' >> $peertube_nginx_file
322 322
         echo "    proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
@@ -366,7 +366,7 @@ function peertube_setup_web {
366 366
     fi
367 367
     echo 'server {' >> $peertube_nginx_file
368 368
     echo "  listen 127.0.0.1:$PEERTUBE_ONION_PORT default_server;" >> $peertube_nginx_file
369
-    echo "  server_name $PEERTUBE_ONION_HOSTNAME;" >> $eertube_nginx_file
369
+    echo "  server_name $PEERTUBE_ONION_HOSTNAME;" >> $peertube_nginx_file
370 370
     echo '' >> $peertube_nginx_file
371 371
     echo '  location / {' >> $peertube_nginx_file
372 372
     echo "    proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
@@ -462,7 +462,7 @@ function peertube_create_config {
462 462
     echo '' >> $peertube_config_file
463 463
     echo 'signup:' >> $peertube_config_file
464 464
     echo '  enabled: false' >> $peertube_config_file
465
-    echo ;  limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited' >> $peertube_config_file
465
+    echo ';  limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited' >> $peertube_config_file
466 466
     echo '' >> $peertube_config_file
467 467
     echo 'user:' >> $peertube_config_file
468 468
     echo '  # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).' >> $peertube_config_file