]> git.evergreen-ils.org Git - working/Evergreen.git/blob - docs/RELEASE_NOTES_NEXT/Administration/apache-internal-http-port.adoc
LP#1691473 Internal Apache HTTP port configuration
[working/Evergreen.git] / docs / RELEASE_NOTES_NEXT / Administration / apache-internal-http-port.adoc
1 Apache Internal Port Configuration Option
2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 Apache configuration now supports a new variable which allows admins to
4 specify the port used by Apache to handle HTTP traffic.  The value is
5 used for HTTP requests routed from Perl handlers back to the same Apache
6 instance, like added content requests.  Use this when running Apache
7 with a non-standard port, typical with a proxy setup.  Defaults to "80".
8
9 [source,conf]
10 -------------------------------------------------------------------
11 <Location /eg>
12     ...
13     PerlSetVar OILSWebInternalHTTPPort "7080"
14     ...
15 </Location>
16 -------------------------------------------------------------------