diff options
| author | syeopite <syeopite@syeopite.dev> | 2021-11-12 04:03:23 -0800 |
|---|---|---|
| committer | syeopite <syeopite@syeopite.dev> | 2021-11-12 04:03:23 -0800 |
| commit | a120f143d7bbe67379d0ff51e96b111661e1d385 (patch) | |
| tree | 77366d1aa7d98cf465914addeaaa91e897f7934b /src | |
| parent | 65fbdbff6af2869dde94abb3b0b9f65286d56500 (diff) | |
| download | invidious-a120f143d7bbe67379d0ff51e96b111661e1d385.tar.gz invidious-a120f143d7bbe67379d0ff51e96b111661e1d385.tar.bz2 invidious-a120f143d7bbe67379d0ff51e96b111661e1d385.zip | |
Disable quic by default
See #2577
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/config.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/config.cr b/src/invidious/config.cr index bacdb4ac..578e31fd 100644 --- a/src/invidious/config.cr +++ b/src/invidious/config.cr @@ -93,7 +93,7 @@ class Config property port : Int32 = 3000 # Port to listen for connections (overrided by command line argument) property host_binding : String = "0.0.0.0" # Host to bind (overrided by command line argument) property pool_size : Int32 = 100 # Pool size for HTTP requests to youtube.com and ytimg.com (each domain has a separate pool of `pool_size`) - property use_quic : Bool = true # Use quic transport for youtube api + property use_quic : Bool = false # Use quic transport for youtube api @[YAML::Field(converter: Preferences::StringToCookies)] property cookies : HTTP::Cookies = HTTP::Cookies.new # Saved cookies in "name1=value1; name2=value2..." format |
