7 Mar
2024
7 Mar
'24
10:03 a.m.
Mark Sapiro writes:
On 3/6/24 12:56 PM, Odhiambo Washington wrote:
Is it possible that an Apache directive like below will fix everything (albeit discreetly with sysadmins driving blindly)?
ProxyPass "/" "http://127.0.0.1:8000/"
That only works if Apache serves only Django and no other URLs.
It's reasonable for a few other paths under root, as well. For example, if you have Shibboleth provide SSO capability, it needs access to some path like /Shibboleth/shibboleth_is_here. Then you can place something like
ProxyPass "/Shibboleth" "!" # check Apache dox
before the ProxyPass "!", which disables the ProxyPass for paths starting with "/Shibboleth".
Not scalable or dynamic, obviously.