Add proper wsgi loglevel when openstack_logging_debug
Change-Id: I51144d92f34ed51c499a4119c059e6475d02eb46
This commit is contained in:
parent
d40bdf4005
commit
0240763d7d
@ -10,6 +10,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if aodh_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<Directory "{{ binary_path }}">
|
||||
<FilesMatch "^aodh-api$">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
|
@ -9,6 +9,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if cinder_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ cinder_api_listen_port }}>
|
||||
WSGIDaemonProcess cinder-api processes={{ openstack_service_workers }} threads=1 user=cinder group=cinder display-name=%{GROUP} python-path={{ python_path }}
|
||||
WSGIProcessGroup cinder-api
|
||||
|
@ -6,6 +6,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if cloudkitty_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ cloudkitty_api_port }}>
|
||||
|
||||
ErrorLog "/var/log/kolla/cloudkitty/cloudkitty-api-error.log"
|
||||
|
@ -6,6 +6,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if freezer_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ freezer_api_port }}>
|
||||
WSGIDaemonProcess freezer-api processes={{ openstack_service_workers }} threads=1 user=freezer display-name=%{GROUP}
|
||||
WSGIProcessGroup freezer-api
|
||||
@ -15,7 +19,6 @@ TraceEnable off
|
||||
ErrorLog {{ freezer_log_dir }}/freezer-api.log
|
||||
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
||||
CustomLog {{ freezer_log_dir }}/freezer-api_access.log logformat
|
||||
LogLevel info
|
||||
|
||||
<Directory {{ python_path }}/freezer_api>
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
|
@ -10,6 +10,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if gnocchi_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ gnocchi_api_listen_port }}>
|
||||
|
||||
ErrorLog "/var/log/kolla/gnocchi/gnocchi-api-error.log"
|
||||
|
@ -12,6 +12,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if keystone_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<Directory "{{ binary_path }}">
|
||||
<FilesMatch "^keystone-wsgi-(public|admin)$">
|
||||
AllowOverride None
|
||||
|
@ -11,6 +11,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if masakari_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<Directory "{{ binary_path }}">
|
||||
<FilesMatch "^masakari-wsgi$">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
|
@ -5,6 +5,10 @@ Listen {{ api_interface_address | put_address_in_context('url') }}:{{ monasca_ap
|
||||
|
||||
TraceEnable off
|
||||
|
||||
{% if monasca_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ monasca_api_port }}>
|
||||
|
||||
ErrorLog "/var/log/kolla/monasca/monasca-api-error.log"
|
||||
|
@ -5,6 +5,10 @@ Listen {{ api_interface_address | put_address_in_context('url') }}:{{ monasca_lo
|
||||
|
||||
TraceEnable off
|
||||
|
||||
{% if monasca_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ monasca_log_api_port }}>
|
||||
|
||||
ErrorLog "/var/log/kolla/monasca/monasca-log-api-error.log"
|
||||
|
@ -6,6 +6,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if panko_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<Directory "{{ binary_path }}">
|
||||
<FilesMatch "^panko-api$">
|
||||
Require all granted
|
||||
|
@ -12,6 +12,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if placement_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ placement_api_listen_port }}>
|
||||
WSGIDaemonProcess placement-api processes={{ openstack_service_workers }} threads=1 user=placement group=placement display-name=%{GROUP} python-path={{ python_path }}
|
||||
WSGIProcessGroup placement-api
|
||||
|
@ -10,6 +10,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if qinling_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ qinling_api_port }}>
|
||||
|
||||
## Vhost docroot
|
||||
|
@ -5,6 +5,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if vitrage_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ vitrage_api_port }}>
|
||||
|
||||
## Vhost docroot
|
||||
|
@ -5,6 +5,10 @@ ServerSignature Off
|
||||
ServerTokens Prod
|
||||
TraceEnable off
|
||||
|
||||
{% if zun_logging_debug | bool %}
|
||||
LogLevel info
|
||||
{% endif %}
|
||||
|
||||
<VirtualHost *:{{ zun_api_port }}>
|
||||
|
||||
## Vhost docroot
|
||||
|
Loading…
Reference in New Issue
Block a user