mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 20:22:08 +00:00
add ouput substitution to prevent shadowing likely root terms
This commit is contained in:
parent
3353dd0cee
commit
045d120244
1 changed files with 9 additions and 5 deletions
|
@ -8,8 +8,8 @@
|
|||
ProxyPass "/learn" "http://127.0.0.1:8008/learn"
|
||||
ProxyPassReverse "/learn" "http://127.0.0.1:8008/learn"
|
||||
|
||||
ProxyPass "/management" "http://127.0.0.1:8008/management"
|
||||
ProxyPassReverse "/management" "http://127.0.0.1:8008/management"
|
||||
ProxyPass "/kalite_mgmt" "http://127.0.0.1:8008/management"
|
||||
ProxyPassReverse "/kalite_mgmt" "http://127.0.0.1:8008/management"
|
||||
|
||||
ProxyPass "/coachreports" "http://127.0.0.1:8008/coachreports"
|
||||
ProxyPassReverse "/coachreports" "http://127.0.0.1:8008/coachreports"
|
||||
|
@ -29,7 +29,11 @@
|
|||
ProxyPass "/api" "http://127.0.0.1:8008/api"
|
||||
ProxyPassReverse "/api" "http://127.0.0.1:8008/api"
|
||||
|
||||
ProxyPass "/content" "http://127.0.0.1:8008/content"
|
||||
ProxyPassReverse "/content" "http://127.0.0.1:8008/content"
|
||||
ProxyPass "/kalite_content" "http://127.0.0.1:8008/content"
|
||||
ProxyPassReverse "/kalite_content" "http://127.0.0.1:8008/content"
|
||||
|
||||
</VirtualHost>
|
||||
AddOutputFilterByType SUBSTITUTE text/html
|
||||
Substitute "s|/management/|/kalite_mgmt/|i"
|
||||
Substitute "s|/content/|/kalite_content/|i"
|
||||
|
||||
</VirtualHost >
|
||||
|
|
Loading…
Reference in a new issue