Merge branch 'feature/served_by_apache' into packaging
This commit is contained in:
commit
b56146d6a0
|
@ -23,7 +23,11 @@ ErrorDocument 500 https//%%authWebName/lmerror/500
|
|||
ErrorDocument 502 https//%%authWebName/lmerror/502
|
||||
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
|
||||
|
||||
# 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
|
||||
|
||||
# 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
|
||||
LogLevel notice
|
||||
# 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
|
||||
|
||||
# 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
|
||||
# See above to set LLNG user id in Apache logs
|
||||
#CustomLog ${APACHE_LOG_DIR}/portal.log llng
|
||||
|
|
Loading…
Reference in New Issue