| Summary: | tracklinks.pl redirects failing under https | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
| Component: | OPAC | Assignee: | Owen Leonard <oleonard> |
| Status: | CLOSED INVALID | QA Contact: | Testopia <testopia> |
| Severity: | enhancement | ||
| Priority: | P5 - low | ||
| Version: | Main | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Nick Clemens (kidclamp)
2017-06-01 12:44:41 UTC
This was an error in proxy configuration and not Koha related This wa related to a proxy rule to forward all http to https, we just needed to limit it to koha urls. We changed: http-response replace-value Location ^http://(.*) https://\1 if { ssl_fc } To: http-response replace-value Location ^http://(.*)/cgi-bin/koha/(.*) https://\1/cgi-bin/koha/\2 if { ssl_fc } |