Opened 15 years ago
Closed 15 years ago
#6809 closed defect (fixed)
Changeset 21099 breaks Apache proxypass
Reported by: | Owned by: | xris | |
---|---|---|---|
Priority: | minor | Milestone: | 0.22 |
Component: | Plugin - MythWeb | Version: | head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
To access mythweb over the Internet I use apache with proxypass. This proxypass points to my internal myth box like this:
ProxyPass? /mythweb http://mythbox/mythweb ProxyPassReverse? /mythweb http://mythbox/mythweb
The internal box runs just plain http, while the external runs https and basic authentication.
Prior to 21099 this was working, but it' broken after the change. I get the basic html of each page, but all links on the page point to http instead of https.
This might be an Apache or ProxyPass? issue I am not familiar with, but as I said, it worked prior to 21099.
Change History (2)
Note: See
TracTickets for help on using
tickets.
[22332] should allow you to work around this, Change your ProxyPass? to the following:
ProxyPass /mythweb https://mythbox:443/mythweb
ProxyPassReverse /mythweb https://mythbox:443/mythweb
We really can't do much better because the port and full url path isn't passed to the mythbox for us to detect and use properly