
- Change License from Apache2 to MIT. - Remove Copyright from individual recipes - Move License to README.md - Add meta-stx Copyright to README.md Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
34 lines
920 B
Plaintext
34 lines
920 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>
|