Skip to content
Snippets Groups Projects
Commit 4303de14 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Implement Apache WSGI for Qinling"

parents d16b68fc f867c471
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
- service.enabled | bool
- config_json.changed | bool
or qinling_conf.changed | bool
or qinling_conf_wsgi.changed | bool
or policy_overwriting.changed | bool
or qinling_api_container.changed | bool
......
......@@ -69,6 +69,21 @@
notify:
- Restart {{ item.key }} container
- name: Copying over wsgi-qinling files for services
vars:
service: "{{ qinling_services['qinling-api'] }}"
template:
src: "wsgi-qinling.conf.j2"
dest: "{{ node_config_directory }}/qinling-api/wsgi-qinling.conf"
mode: "0660"
become: true
register: qinling_conf_wsgi
when:
- inventory_hostname in groups[service.group]
- service.enabled | bool
notify:
- Restart qinling-api container
- name: Copying over existing policy file
template:
src: "{{ qinling_policy_file_path }}"
......
{% set qinling_cmd = 'apache2' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd' %}
{% set qinling_dir = 'apache2/conf-enabled' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd/conf.d' %}
{
"command": "qinling-api --config-file /etc/qinling/qinling.conf",
"command": "{{ qinling_cmd }} -DFOREGROUND",
"config_files": [
{
"source": "{{ container_config_directory }}/qinling.conf",
"dest": "/etc/qinling/qinling.conf",
"owner": "qinling",
"perm": "0600"
},
{
"source": "{{ container_config_directory }}/wsgi-qinling.conf",
"dest": "/etc/{{ qinling_dir }}/wsgi-qinling.conf",
"owner": "qinling",
"perm": "0600"
}{% if qinling_policy_file is defined %},
{
"source": "{{ container_config_directory }}/{{ qinling_policy_file }}",
......
......@@ -7,7 +7,6 @@ transport_url = {{ rpc_transport_url }}
[api]
port = {{ qinling_api_port }}
host = {{ api_interface_address }}
api_workers = {{ openstack_service_workers }}
{% endif %}
{% if service_name == 'qinling-engine' %}
......
{% if kolla_base_distro == 'ubuntu' %}
{% set python_path = '/usr/lib/python3/dist-packages' if qinling_install_type == 'binary' else '/var/lib/kolla/venv/lib/python3.6/site-packages' %}
{% else %}
{% set python_path = '/usr/lib/python2.7/site-packages' if qinling_install_type == 'binary' else '/var/lib/kolla/venv/lib/python2.7/site-packages' %}
{% endif %}
Listen {{ api_interface_address }}:{{ qinling_api_port }}
ServerSignature Off
ServerTokens Prod
TraceEnable off
<VirtualHost *:{{ qinling_api_port }}>
## Vhost docroot
DocumentRoot "/var/www/cgi-bin/qinling"
## Directories, there should at least be a declaration for /var/www/cgi-bin/qinling
<Directory "/var/www/cgi-bin/qinling">
Options Indexes FollowSymLinks MultiViews
Require all granted
</Directory>
## Logging
ErrorLog "/var/log/kolla/qinling/qinling_api_wsgi_error.log"
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
CustomLog "/var/log/kolla/qinling/qinling_api_wsgi_access.log" logformat
WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess qinling group=qinling processes={{ openstack_service_workers }} threads=1 user=qinling python-path={{ python_path }}
WSGIProcessGroup qinling
WSGIScriptAlias / "/var/www/cgi-bin/qinling/wsgi.py"
</VirtualHost>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment