Files
freezer-api/devstack/files/apache-freezer-api.template
Fausto Marzi 08e72de99c Add astroid to test-req and fixed perms to gate_hook.sh
Currently freezer-api build are broken as pylint execution
failes is atroid is not availble in test-requirements.

Exec permissions of the file devstack/gate_hook.sh are
added as the dsvm gate job was failing.

Change-Id: I837e3fe973d72c792cb34711cef9f6507a004d49
2016-01-18 00:15:54 +00:00

22 lines
670 B
Plaintext

Listen %SERVICE_HOST%:%FREEZER_API_PORT%
<VirtualHost *:%FREEZER_API_PORT%>
WSGIDaemonProcess freezer-api processes=2 threads=2 user=%USER%
WSGIProcessGroup freezer-api
WSGIApplicationGroup freezer-api
WSGIScriptAlias / %FREEZER_API_DIR%/freezer_api/cmd/api.py
ErrorLog /var/log/%APACHE_NAME%/freezer-api.log
CustomLog /var/log/%APACHE_NAME%/freezer-api_access.log combined
LogLevel info
<Directory %FREEZER_API_DIR%/freezer_api>
Options Indexes FollowSymLinks MultiViews
Require all granted
AllowOverride None
Order allow,deny
allow from all
LimitRequestBody 102400
</Directory>
</VirtualHost>