From 060ff7feefbc31b7ad496cc2fc880033084fde48 Mon Sep 17 00:00:00 2001 From: Bjoern Heidotting Date: Sat, 4 Jun 2016 19:54:44 +0000 Subject: [PATCH] - Turn into - Indent code Reviewed by: wblock Differential Revision: https://reviews.freebsd.org/D6725 --- .../books/handbook/network-servers/chapter.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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/