Merge "Fix wsgi file path and log-file parameter"
This commit is contained in:
commit
413bd848f2
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"command": "gnocchi-metricd --logfile /var/log/kolla/gnocchi/gnocchi-metricd.log",
|
"command": "gnocchi-metricd --log-file /var/log/kolla/gnocchi/gnocchi-metricd.log",
|
||||||
"config_files": [
|
"config_files": [
|
||||||
{
|
{
|
||||||
"source": "{{ container_config_directory }}/gnocchi.conf",
|
"source": "{{ container_config_directory }}/gnocchi.conf",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"command": "gnocchi-statsd --logfile /var/log/kolla/gnocchi/gnocchi-statsd.log",
|
"command": "gnocchi-statsd --log-file /var/log/kolla/gnocchi/gnocchi-statsd.log",
|
||||||
"config_files": [
|
"config_files": [
|
||||||
{
|
{
|
||||||
"source": "{{ container_config_directory }}/gnocchi.conf",
|
"source": "{{ container_config_directory }}/gnocchi.conf",
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{% 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 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 }}
|
Listen {{ api_interface_address }}:{{ gnocchi_api_port }}
|
||||||
|
|
||||||
<VirtualHost *:{{ gnocchi_api_port }}>
|
<VirtualHost *:{{ gnocchi_api_port }}>
|
||||||
@ -8,9 +9,9 @@ Listen {{ api_interface_address }}:{{ gnocchi_api_port }}
|
|||||||
WSGIApplicationGroup %{GLOBAL}
|
WSGIApplicationGroup %{GLOBAL}
|
||||||
WSGIDaemonProcess gnocchi group=gnocchi processes={{ openstack_service_workers }} threads=1 user=gnocchi python-path={{ python_path }}
|
WSGIDaemonProcess gnocchi group=gnocchi processes={{ openstack_service_workers }} threads=1 user=gnocchi python-path={{ python_path }}
|
||||||
WSGIProcessGroup gnocchi
|
WSGIProcessGroup gnocchi
|
||||||
WSGIScriptAlias / "{{ python_path }}/gnocchi/rest/app.wsgi"
|
WSGIScriptAlias / "{{ wsgi_path }}/gnocchi-api"
|
||||||
|
|
||||||
<Directory "{{ python_path }}/gnocchi/rest">
|
<Directory "{{ wsgi_path }}">
|
||||||
Require all granted
|
Require all granted
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user