lldpd: update for stx 5.0
[pti/rtp.git] / meta-starlingx / meta-stx-cloud / recipes-devtools / python / files / python-django-horizon / openstack-dashboard-httpd-logging.conf
1
2 # if you want logging to a separate file, please update your config 
3 # according to the last 4 lines in this snippet, and also take care
4 # to introduce a <VirtualHost > directive.
5 #
6
7 WSGISocketPrefix run/wsgi
8
9 <VirtualHost *:80>
10     WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
11     Alias /static /usr/share/openstack-dashboard/static
12
13     WSGIDaemonProcess dashboard
14     WSGIProcessGroup dashboard
15
16     #DocumentRoot %HORIZON_DIR%/.blackhole/
17
18     <Directory />
19         Options FollowSymLinks
20         AllowOverride None
21     </Directory>
22
23     <Directory /usr/share/openstack-dashboard/>
24         Options Indexes FollowSymLinks MultiViews
25         AllowOverride None
26         Order allow,deny
27         allow from all
28     </Directory>
29
30     ErrorLog logs/openstack_dashboard_error.log
31     LogLevel warn
32     CustomLog logs/openstack_dashboard_access.log combined
33 </VirtualHost>