| Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 1 | Listen %PUBLICPORT% | 
 | 2 | Listen %ADMINPORT% | 
 | 3 |  | 
 | 4 | <VirtualHost *:%PUBLICPORT%> | 
| Felipe Reyes | 2c95fcd | 2014-08-14 17:41:55 +0200 | [diff] [blame] | 5 |     WSGIDaemonProcess keystone-public processes=5 threads=1 user=%USER% display-name=%{GROUP} | 
| Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 6 |     WSGIProcessGroup keystone-public | 
 | 7 |     WSGIScriptAlias / %PUBLICWSGI% | 
 | 8 |     WSGIApplicationGroup %{GLOBAL} | 
| Steve Martinelli | dc31f76 | 2014-12-13 23:34:15 -0500 | [diff] [blame] | 9 |     WSGIPassAuthorization On | 
| Noboru Iwamatsu | b4495eb | 2014-07-02 18:31:31 +0900 | [diff] [blame] | 10 |     <IfVersion >= 2.4> | 
 | 11 |       ErrorLogFormat "%{cu}t %M" | 
 | 12 |     </IfVersion> | 
| Brant Knudson | cfc9465 | 2014-08-21 18:25:29 -0500 | [diff] [blame] | 13 |     ErrorLog /var/log/%APACHE_NAME%/keystone.log | 
| Brant Knudson | 2a6ce71 | 2014-08-21 18:23:12 -0500 | [diff] [blame] | 14 |     CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 15 |     %SSLENGINE% | 
 | 16 |     %SSLCERTFILE% | 
 | 17 |     %SSLKEYFILE% | 
| Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 18 | </VirtualHost> | 
 | 19 |  | 
 | 20 | <VirtualHost *:%ADMINPORT%> | 
| Felipe Reyes | 2c95fcd | 2014-08-14 17:41:55 +0200 | [diff] [blame] | 21 |     WSGIDaemonProcess keystone-admin processes=5 threads=1 user=%USER% display-name=%{GROUP} | 
| Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 22 |     WSGIProcessGroup keystone-admin | 
 | 23 |     WSGIScriptAlias / %ADMINWSGI% | 
 | 24 |     WSGIApplicationGroup %{GLOBAL} | 
| Steve Martinelli | b57f636 | 2014-12-15 20:55:54 -0500 | [diff] [blame] | 25 |     WSGIPassAuthorization On | 
| Noboru Iwamatsu | b4495eb | 2014-07-02 18:31:31 +0900 | [diff] [blame] | 26 |     <IfVersion >= 2.4> | 
 | 27 |       ErrorLogFormat "%{cu}t %M" | 
 | 28 |     </IfVersion> | 
| Brant Knudson | cfc9465 | 2014-08-21 18:25:29 -0500 | [diff] [blame] | 29 |     ErrorLog /var/log/%APACHE_NAME%/keystone.log | 
| Brant Knudson | 2a6ce71 | 2014-08-21 18:23:12 -0500 | [diff] [blame] | 30 |     CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined | 
| Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 31 |     %SSLENGINE% | 
 | 32 |     %SSLCERTFILE% | 
 | 33 |     %SSLKEYFILE% | 
| Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 34 | </VirtualHost> |