The patch add the devstack install murano-api via uwsgi. Implements: blueprint murano-api-wsgi Change-Id: I3b83a0295cf60de24ff90cabfcbbc3cfb0171905
26 lines
772 B
Plaintext
26 lines
772 B
Plaintext
Listen %PUBLICPORT%
|
|
|
|
<VirtualHost *:%PUBLICPORT%>
|
|
WSGIDaemonProcess murano-api processes=1 threads=10 user=%USER% display-name=%{GROUP} %VIRTUALENV%
|
|
WSGIProcessGroup murano-api
|
|
WSGIScriptAlias / %MURANO_BIN_DIR%/murano-wsgi-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIPassAuthorization On
|
|
AllowEncodedSlashes On
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
ErrorLog /var/log/%APACHE_NAME%/murano_api.log
|
|
CustomLog /var/log/%APACHE_NAME%/murano_api_access.log combined
|
|
|
|
<Directory %MURANO_BIN_DIR%>
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.4>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
</VirtualHost>
|