hosingh000 50756599b5 setup and install ranger
Change-Id: I20a1091eb052d7540440e32cc9c802272fd4ae5c
2017-09-22 09:46:30 -05:00

27 lines
605 B
Plaintext

Listen ${UUID_PORT}
<VirtualHost *:${UUID_PORT}>
WSGIDaemonProcess uuidgen user=stack group=stack threads=5
WSGIScriptAlias / ${ORM_BASE}/orm/services/id_generator/uuidgen.wsgi
<Location /v1/logs>
Order deny,allow
Deny from all
Allow from localhost
</Location>
<Location /v1/configuration>
Order deny,allow
Deny from all
Allow from localhost
</Location>
<Directory ${ORM_BASE}/orm/services/id_generator/>
WSGIProcessGroup uuidgen
WSGIApplicationGroup %{GLOBAL}
Require all granted
Allow from all
</Directory>
</VirtualHost>