Advertisement
Guest User

Untitled

a guest
Oct 15th, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. Listen 5000
  2. Listen 35357
  3. <VirtualHost *:5000>
  4. WSGIDaemonProcess keystone-public processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
  5. WSGIProcessGroup keystone-public
  6. WSGIScriptAlias / /var/www/cgi-bin/keystone/main
  7. WSGIApplicationGroup %{GLOBAL}
  8. WSGIPassAuthorization On
  9. LogLevel info
  10. ErrorLogFormat "%{cu}t %M"
  11. ErrorLog /var/log/httpd/keystone-error.log
  12. CustomLog /var/log/httpd/keystone-access.log combined
  13. </VirtualHost>
  14. <VirtualHost *:35357>
  15. WSGIDaemonProcess keystone-admin processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
  16. WSGIProcessGroup keystone-admin
  17. WSGIScriptAlias / /var/www/cgi-bin/keystone/admin
  18. WSGIApplicationGroup %{GLOBAL}
  19. WSGIPassAuthorization On
  20. LogLevel info
  21. ErrorLogFormat "%{cu}t %M"
  22. ErrorLog /var/log/httpd/keystone-error.log
  23. CustomLog /var/log/httpd/keystone-access.log combined
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement