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} |
Brant Knudson | cfc9465 | 2014-08-21 18:25:29 -0500 | [diff] [blame^] | 9 | ErrorLog /var/log/%APACHE_NAME%/keystone.log |
Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 10 | LogLevel debug |
| 11 | CustomLog /var/log/%APACHE_NAME%/access.log combined |
| 12 | </VirtualHost> |
| 13 | |
| 14 | <VirtualHost *:%ADMINPORT%> |
Felipe Reyes | 2c95fcd | 2014-08-14 17:41:55 +0200 | [diff] [blame] | 15 | WSGIDaemonProcess keystone-admin processes=5 threads=1 user=%USER% display-name=%{GROUP} |
Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 16 | WSGIProcessGroup keystone-admin |
| 17 | WSGIScriptAlias / %ADMINWSGI% |
| 18 | WSGIApplicationGroup %{GLOBAL} |
Brant Knudson | cfc9465 | 2014-08-21 18:25:29 -0500 | [diff] [blame^] | 19 | ErrorLog /var/log/%APACHE_NAME%/keystone.log |
Jamie Lennox | a00e5f8 | 2013-09-17 12:47:03 +1000 | [diff] [blame] | 20 | LogLevel debug |
| 21 | CustomLog /var/log/%APACHE_NAME%/access.log combined |
| 22 | </VirtualHost> |
Ian Wienand | dcdcb5a | 2014-07-17 19:54:50 +1000 | [diff] [blame] | 23 | |
| 24 | # Workaround for missing path on RHEL6, see |
| 25 | # https://bugzilla.redhat.com/show_bug.cgi?id=1121019 |
| 26 | WSGISocketPrefix /var/run/%APACHE_NAME% |