apache 2.4 was released long time ago and is now available in recent operating systems. Change-Id: If367869e8490159f31c7d6c0207e182dd7ecb164 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
19 lines
536 B
Plaintext
19 lines
536 B
Plaintext
Listen %PUBLICPORT%
|
|
|
|
<VirtualHost *:%PUBLICPORT%>
|
|
WSGIDaemonProcess osapi_volume processes=%APIWORKERS% threads=1 user=%USER% display-name=%{GROUP} %VIRTUALENV%
|
|
WSGIProcessGroup osapi_volume
|
|
WSGIScriptAlias / %CINDER_BIN_DIR%/cinder-wsgi
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIPassAuthorization On
|
|
ErrorLogFormat "%{cu}t %M"
|
|
ErrorLog /var/log/%APACHE_NAME%/c-api.log
|
|
%SSLENGINE%
|
|
%SSLCERTFILE%
|
|
%SSLKEYFILE%
|
|
|
|
<Directory %CINDER_BIN_DIR%>
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|