ranger/orm/services/flavor_manager/fms_rest.conf
raigax9 729705ead0 Added and edited files to run ranger
Created scripts for setting up ranger as well as
modifying the service files as part of the setup.

Change-Id: Ic1d77dd03fa2287097f35f3de5e890cfb768f71b
2017-09-22 13:37:45 -04:00

28 lines
620 B
Plaintext

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