data
doc
extras.d
files
debs
ldap
rpms
rpms-suse
swift
apache-cinder-api.template
apache-horizon.template
apache-keystone.template
apache-neutron.template
apache-nova-api.template
apache-nova-metadata.template
apache-placement-api.template
apts
dnsmasq-for-baremetal-from-nova-network.conf
gate
inc
lib
pkg
playbooks
roles
samples
tests
tools
.gitignore
.gitreview
.mailmap
.zuul.yaml
FUTURE.rst
HACKING.rst
LICENSE
MAINTAINERS.rst
Makefile
README.rst
clean.sh
functions
functions-common
openrc
run_tests.sh
setup.cfg
setup.py
stack.sh
stackrc
tox.ini
unstack.sh
27 lines
733 B
Plaintext
27 lines
733 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
|
||
|
<IfVersion >= 2.4>
|
||
|
ErrorLogFormat "%{cu}t %M"
|
||
|
</IfVersion>
|
||
|
ErrorLog /var/log/%APACHE_NAME%/c-api.log
|
||
|
%SSLENGINE%
|
||
|
%SSLCERTFILE%
|
||
|
%SSLKEYFILE%
|
||
|
|
||
|
<Directory %CINDER_BIN_DIR%>
|
||
|
<IfVersion >= 2.4>
|
||
|
Require all granted
|
||
|
</IfVersion>
|
||
|
<IfVersion < 2.4>
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
</IfVersion>
|
||
|
</Directory>
|
||
|
</VirtualHost>
|