vcp-elearning/apache2/httpd.conf

22 lines
460 B
Text
Raw Normal View History

2016-03-19 13:54:19 +01:00
WSGIScriptAlias / /var/www/tkupek_elearning/wsgi.py
WSGIDaemonProcess elearning user=apache group=nobody processes=10 threads=1
WSGIProcessGroup elearning
Alias /static/ /var/www/tkupek_elearning/elearning/static/
<Directory /var/www/tkupek_elearning/elearning/static>
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/tkupek_elearning>
2016-03-19 14:38:31 +01:00
Options FollowSymLinks
2016-03-19 13:54:19 +01:00
<Files wsgi.py>
Order allow,deny
Allow from all
</Files>
</Directory>