blob: 7f1ccaf6e5a9fe8e100425f786beb752a9818638 (
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/gsoc/robots.txt
Alias /favicon.ico /home/akhan/gsoc/favicon.ico
Alias /static /home/akhan/gsoc/static
ErrorLog /home/akhan/gsoc/logs/error.log
CustomLog /home/akhan/gsoc/logs/access.log combined
WSGIScriptAlias / /home/akhan/gsoc/apache/django.wsgi
WSGIDaemonProcess akhan user=akhan group=users threads=25
<Directory "/home/akhan/gsoc/apache">
Order deny,allow
Allow from all
</Directory>
<Directory "/home/akhan/gsoc">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
|