Listen on specific interface
This commit is contained in:
parent
b6ebaa9bc9
commit
44d79bf8ea
|
@ -23,7 +23,11 @@ ErrorDocument 500 https//%%authWebName/lmerror/500
|
||||||
ErrorDocument 502 https//%%authWebName/lmerror/502
|
ErrorDocument 502 https//%%authWebName/lmerror/502
|
||||||
ErrorDocument 503 https//%%authWebName/lmerror/503
|
ErrorDocument 503 https//%%authWebName/lmerror/503
|
||||||
|
|
||||||
<VirtualHost *:443>
|
%if %%container_ip_web != '127.0.0.1'
|
||||||
|
<VirtualHost %%container_ip_web:443>
|
||||||
|
%else
|
||||||
|
<VirtualHost %%adresse_ip_eth0:443>
|
||||||
|
%end if
|
||||||
ServerName %%reloadWebName
|
ServerName %%reloadWebName
|
||||||
|
|
||||||
# Configuration reload mechanism (only 1 per physical server is
|
# Configuration reload mechanism (only 1 per physical server is
|
||||||
|
|
|
@ -7,7 +7,11 @@
|
||||||
#LogFormat "%v:%p %h %l %{Lm-Remote-User}o %t \"%r\" %>s %O" llng
|
#LogFormat "%v:%p %h %l %{Lm-Remote-User}o %t \"%r\" %>s %O" llng
|
||||||
|
|
||||||
# Manager virtual host (manager.__DNSDOMAIN__)
|
# Manager virtual host (manager.__DNSDOMAIN__)
|
||||||
<VirtualHost *:443>
|
%if %%container_ip_web != '127.0.0.1'
|
||||||
|
<VirtualHost %%container_ip_web:443>
|
||||||
|
%else
|
||||||
|
<VirtualHost %%adresse_ip_eth0:443>
|
||||||
|
%end if
|
||||||
ServerName %%managerWebName
|
ServerName %%managerWebName
|
||||||
LogLevel notice
|
LogLevel notice
|
||||||
# See above to set LLNG user id in Apache logs
|
# See above to set LLNG user id in Apache logs
|
||||||
|
|
|
@ -7,7 +7,11 @@
|
||||||
#LogFormat "%v:%p %h %l %{Lm-Remote-User}o %t \"%r\" %>s %O" llng
|
#LogFormat "%v:%p %h %l %{Lm-Remote-User}o %t \"%r\" %>s %O" llng
|
||||||
|
|
||||||
# Portal Virtual Host (auth.__DNSDOMAIN__)
|
# Portal Virtual Host (auth.__DNSDOMAIN__)
|
||||||
<VirtualHost *:443>
|
%if %%container_ip_web != '127.0.0.1'
|
||||||
|
<VirtualHost %%container_ip_web:443>
|
||||||
|
%else
|
||||||
|
<VirtualHost %%adresse_ip_eth0:443>
|
||||||
|
%end if
|
||||||
ServerName %%authWebName
|
ServerName %%authWebName
|
||||||
# See above to set LLNG user id in Apache logs
|
# See above to set LLNG user id in Apache logs
|
||||||
#CustomLog ${APACHE_LOG_DIR}/portal.log llng
|
#CustomLog ${APACHE_LOG_DIR}/portal.log llng
|
||||||
|
|
Loading…
Reference in New Issue