diff options
| author | syeopite <syeopite@syeopite.dev> | 2025-01-22 11:11:42 -0800 |
|---|---|---|
| committer | syeopite <syeopite@syeopite.dev> | 2025-01-22 11:11:42 -0800 |
| commit | 21fd71770151dbf9bcc379a812e10687338b6f56 (patch) | |
| tree | 6dd0e2dae526726b62952e4076a447fe7692343e | |
| parent | 8ee73aa0c15264fabf22a1a3db7e7f46f3617315 (diff) | |
| parent | 033e42a9813440b6798ed7d638e0aa0783efe10d (diff) | |
| download | invidious-21fd71770151dbf9bcc379a812e10687338b6f56.tar.gz invidious-21fd71770151dbf9bcc379a812e10687338b6f56.tar.bz2 invidious-21fd71770151dbf9bcc379a812e10687338b6f56.zip | |
Comment out http_proxy in example config (#5151)
The http_proxy section was not commented out in the example config
causing Invidious to error out unless an HTTP proxy was configured.
This problem affects new manual installs in which the example config
is copied to create the actual config Invidious uses
| -rw-r--r-- | config/config.example.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.example.yml b/config/config.example.yml index a3a2eeb7..bc2deda5 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -178,11 +178,11 @@ https_only: false ## ## If unset, then no HTTP proxy will be used. ## -http_proxy: - user: - password: - host: - port: +#http_proxy: +# user: +# password: +# host: +# port: ## |
