openstack-armada-app/upstream/openstack/python-horizon/debian/files/openstack-dashboard-httpd-logging.conf
Lucas de Ataides d197336e5e Fix downloader for Horizon package
On the review that introduce the upstream/openstack folder to this
repo [1], the centos folders for all packages were removed, as they're not
used anymore. This wasn't true for the Horizon package, as it contained
some files on the centos folder that were used on the downloader.

This change reintroduces those files under the debian folder, fixing
their directory on the meta_data.yaml file of this package.

None of the files under /upstream/openstack/python-horizon/debian/files/* were changed, they were only copied from [2]

[1] https://review.opendev.org/c/starlingx/openstack-armada-app/+/886027
[2] https://opendev.org/starlingx/upstream/src/branch/master/openstack/python-horizon/centos/files

Test Plan:
PASS: Run downloader for the Horizon package
PASS: Build Horizon package
PASS: Build stx-horizon image

Story: 2010774
Task: 48115

Change-Id: Ibe92cd40cc5f16f105a6812d9a86cb772e15f2b0
Signed-off-by: Lucas de Ataides <lucas.deataidesbarreto@windriver.com>
2023-06-22 15:20:38 +00:00

33 lines
919 B
Plaintext

# if you want logging to a separate file, please update your config
# according to the last 4 lines in this snippet, and also take care
# to introduce a <VirtualHost > directive.
#
WSGISocketPrefix run/wsgi
<VirtualHost *:80>
WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
Alias /static /usr/share/openstack-dashboard/static
WSGIDaemonProcess dashboard
WSGIProcessGroup dashboard
#DocumentRoot %HORIZON_DIR%/.blackhole/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /usr/share/openstack-dashboard/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog logs/openstack_dashboard_error.log
LogLevel warn
CustomLog logs/openstack_dashboard_access.log combined
</VirtualHost>