Skip to content
Snippets Groups Projects
wsgi-gnocchi.conf.j2 972 B
Newer Older
zhubingbing's avatar
zhubingbing committed
{% set python_path = '/usr/lib/python2.7/site-packages' if kolla_install_type == 'binary' else '/var/lib/kolla/venv/lib/python2.7/site-packages' %}
{% set wsgi_path = '/usr/bin' if kolla_install_type == 'binary' else '/var/lib/kolla/venv/bin' %}
Listen {{ api_interface_address }}:{{ gnocchi_api_port }}
ServerSignature Off
ServerTokens Prod
zhubingbing's avatar
zhubingbing committed
<VirtualHost *:{{ gnocchi_api_port }}>

  ErrorLog "/var/log/kolla/gnocchi/gnocchi-api-error.log"
  LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
  CustomLog "/var/log/kolla/gnocchi/gnocchi-api-access.log" logformat
  WSGIApplicationGroup %{GLOBAL}
  WSGIDaemonProcess gnocchi group=gnocchi processes={{ openstack_service_workers }} threads=1 user=gnocchi python-path={{ python_path }}
  WSGIProcessGroup gnocchi
  WSGIScriptAlias / "{{ wsgi_path }}/gnocchi-api"
  <Directory "{{ wsgi_path }}">
        Require all granted
zhubingbing's avatar
zhubingbing committed
  </Directory>

</VirtualHost>