| 1 | NameVirtualHost 192.168.1.4
|
|---|
| 2 | <virtualhost 192.168.1.4>
|
|---|
| 3 | ServerAdmin hilbert@hippe-it.nl
|
|---|
| 4 | ServerName sitebeheer.local
|
|---|
| 5 |
|
|---|
| 6 | <location "/">
|
|---|
| 7 | Order allow,deny
|
|---|
| 8 | Allow from all
|
|---|
| 9 |
|
|---|
| 10 | SetHandler python-program
|
|---|
| 11 | PythonHandler django.core.handlers.modpython
|
|---|
| 12 | SetEnv DJANGO_SETTINGS_MODULE rvucms.settings
|
|---|
| 13 | PythonDebug On
|
|---|
| 14 | PythonPath "['/home/schraal/', 'home/schraal/rvucms', '/home/schraal/rvucms/cms'] + sys.path"
|
|---|
| 15 | </location>
|
|---|
| 16 |
|
|---|
| 17 | ErrorLog /var/log/apache2/error.log
|
|---|
| 18 | # Possible values include: debug, info, notice, warn, error, crit,
|
|---|
| 19 | # alert, emerg.
|
|---|
| 20 | LogLevel warn
|
|---|
| 21 | CustomLog /var/log/apache2/access.log combined
|
|---|
| 22 | </virtualhost>
|
|---|