
* Make ingress-internal relation mandatory for charms instead of ingress-public * If ingress-public is not integrated, default public endpoint to internal endpoint Change-Id: Ibbc600b3dd53655f2160394d4717b75e14d63cf8
21 lines
713 B
Plaintext
21 lines
713 B
Plaintext
Listen 0.0.0.0:80
|
|
|
|
WSGIScriptAlias {{ ingress_internal.ingress_path }} /usr/share/openstack-dashboard/openstack_dashboard/wsgi.py process-group=horizon
|
|
WSGIDaemonProcess horizon user=horizon group=horizon processes=4 threads=10 display-name=%{GROUP}
|
|
WSGIProcessGroup horizon
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
|
|
Alias /static /var/lib/openstack-dashboard/static/
|
|
Alias {{ ingress_internal.ingress_path }}/static /var/lib/openstack-dashboard/static/
|
|
|
|
ErrorLog {{ wsgi_config.error_log }}
|
|
CustomLog {{ wsgi_config.custom_log }} combined
|
|
|
|
<Directory /usr/share/openstack-dashboard/openstack_dashboard>
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<Directory /var/lib/openstack-dashboard/static>
|
|
Require all granted
|
|
</Directory>
|