summaryrefslogtreecommitdiffstats
path: root/apache/apache_django_wsgi.conf
blob: 18a7c41788190ea725a1cd058e166d188bb4a8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<VirtualHost *:80>

	Alias /robots.txt  /home/akhan/hyperkitty/robots.txt
	Alias /favicon.ico /home/akhan/hyperkitty/favicon.ico
	Alias /static      /home/akhan/hyperkitty/static_files
	
	ErrorLog /home/akhan/hyperkitty/logs/error.log
	CustomLog /home/akhan/hyperkitty/logs/access.log combined
	
	WSGIScriptAlias / /home/akhan/hyperkitty/apache/django.wsgi
	WSGIDaemonProcess akhan user=akhan group=users threads=25
	
	<Directory "/home/akhan/hyperkitty/apache">
		Order deny,allow
		Allow from all
	</Directory>
	
	<Directory "/home/akhan/hyperkitty">
      		Order allow,deny
      		Allow from all
	</Directory>

</VirtualHost>