chore: change the hostname in default config to match the one assumed

(if not explicitly passed to the script, e.g. when running with flask)
This commit is contained in:
2025-09-05 18:51:09 +02:00
parent 3cf203ee27
commit 15d2de5228
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
db_file_path = "/path/to/ythdd_db.sqlite" # Preferably stored on an SSD.
video_storage_directory_path = "/path/to/videos/" # Path to video vault.
is_proxied = false # Set to true if running behind reverse proxy.
public_facing_url = "http://localhost:5000/" # Used for URL rewriting. Note the trailing backslash /.
public_facing_url = "http://127.0.0.1:5000/" # Used for URL rewriting. Note the trailing backslash /.
debug = false # Whether to print verbose, debug info on API endpoints.
cache = true # Whether to cache requests for 3 hours (temporary solution to long load times).