diff --git a/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml b/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
index 2b4de88b19..79e33f3356 100644
--- a/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
+++ b/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
@@ -4633,15 +4633,15 @@ $include Kexample.com.+005+nnnnn.ZSK.key ; ZSK
add the following entries to
httpd.conf:
- <VirtualHost *>
-ServerName www.domain.tld
-DocumentRoot /www/domain.tld
+ <VirtualHost *>
+ ServerName www.domain.tld
+ DocumentRoot /www/domain.tld
</VirtualHost>
<VirtualHost *>
-ServerName www.someotherdomain.tld
-DocumentRoot /www/someotherdomain.tld
-</VirtualHost>
+ ServerName www.someotherdomain.tld
+ DocumentRoot /www/someotherdomain.tld
+</VirtualHost>
For each virtual host, replace the values for
ServerName and
@@ -4859,14 +4859,14 @@ AddModule mod_php5.c
httpd.conf, specifying the full path to
the project directory:
- <Location "/">
+ <Location "/">
SetHandler python-program
PythonPath "['/dir/to/the/django/packages/'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonAutoReload On
PythonDebug On
-</Location>
+</Location>
Refer to https://docs.djangoproject.com/en/1.6/