diff --git a/conf/config-default.yaml b/conf/config-default.yaml deleted file mode 100644 index 854905e..0000000 --- a/conf/config-default.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# See https://owncast.online/docs/configuration/ for more details - -instanceDetails: - name: Owncast - title: Owncast - summary: "This is brief summary of whom you are or what your stream is. You can edit this description in your config file." - - logo: /img/logo.svg - - tags: - - music - - software - - streaming - - # https://owncast.online/docs/configuration/#external-links - # for full list of supported social links. All optional. - socialHandles: - - platform: github - url: http://github.com/owncast/owncast - -videoSettings: - # Change this value and keep it secure. Treat it like a password to your live stream. - streamingKey: abc123 - - streamQualities: - - medium: - videoBitrate: 1200 - encoderPreset: veryfast - -# Set to true if you don't want the service checking for future releases. -disableUpgradeChecks: false - -# Off by default. You can optionally list yourself in the Owncast directory. -# Make sure your instanceURL is the public URL to your Owncast instance. -yp: - enabled: false - instanceURL: https://__DOMAIN__ diff --git a/manifest.json b/manifest.json index d9254fc..84033d7 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Self-hosted live video and web chat server for use with existing broadcasting software", "fr": "Serveur de vidéo en direct et de chat Web auto-hébergé à utiliser avec un logiciel de diffusion" }, - "version": "0.0.7~ynh1", + "version": "0.0.7~ynh2", "url": "https://owncast.online/", "upstream": { "license": "MIT", diff --git a/scripts/install b/scripts/install index 663c398..a6ba2f8 100755 --- a/scripts/install +++ b/scripts/install @@ -99,16 +99,6 @@ chmod 750 "$final_path" chmod -R o-rwx "$final_path" chown -R $app:www-data "$final_path" -#================================================= -# ADD A CONFIGURATION -#================================================= -ynh_script_progression --message="Adding a configuration file..." --weight=1 - -ynh_add_config --template="../conf/config-default.yaml" --destination="$final_path/config.yaml" - -chmod 400 "$final_path/config.yaml" -chown $app:$app "$final_path/config.yaml" - #================================================= # NGINX CONFIGURATION #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index b7141d0..19133f9 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -69,7 +69,7 @@ then ynh_script_progression --message="Upgrading source files..." --weight=5 # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$final_path" --source_id="$architecture" --keep="$final_path/config.yaml" + ynh_setup_source --dest_dir="$final_path" --source_id="$architecture" fi chmod 750 "$final_path"