Skip to content

Commit

Permalink
Merge pull request linuxserver#155 from n-i-x/master
Browse files Browse the repository at this point in the history
Add a note about HTTP/2 and Transmission Chrome Extensions
  • Loading branch information
nemchik authored Apr 28, 2020
2 parents f204d1d + f58155c commit fb47872
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 11 additions & 1 deletion transmission.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# make sure that your dns has a cname set for transmission
# Make sure that DNS has a cname set for transmission
#
# Some Transmission Chrome extensions cannot handle HTTP/2 proxies as they
# rely on the HTTP Status Text to determine if they should add the
# X-Transmission-Session-Id header or not. HTTP/2 does not return this text
# so jQuery responses are empty. This causes RPCs to fail.
#
# If your extension is affected, you can remove http2 from the default server
# in /config/nginx/site-confs/default or listen on a different port that has
# no http2 servers defined. Better yet, submit a bug report with the
# extension developer to fix their extensions to support HTTP/2.

server {
listen 443 ssl;
Expand Down
12 changes: 11 additions & 1 deletion transmission.subfolder.conf.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# transmission does not require a base url setting
# Transmission does not require a base url setting
#
# Some Transmission Chrome extensions cannot handle HTTP/2 proxies as they
# rely on the HTTP Status Text to determine if they should add the
# X-Transmission-Session-Id header or not. HTTP/2 does not return this text
# so jQuery responses are empty. This causes RPCs to fail.
#
# If your extension is affected, you can remove http2 from the default server
# in /config/nginx/site-confs/default or listen on a different port that has
# no http2 servers defined. Better yet, submit a bug report with the
# extension developer to fix their extensions to support HTTP/2.

location ^~ /transmission {
# enable the next two lines for http auth
Expand Down

0 comments on commit fb47872

Please sign in to comment.