diff --git a/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml b/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml index 6fa240d963..d9a00bc360 100644 --- a/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml @@ -4045,9 +4045,9 @@ zone "10.168.192.in-addr.arpa" in { This section covers version 1.3.X of the Apache HTTP Server as that is the - most widely used version for &os;. Apache 2.X introduces many + most widely used version for &os;. Apache 2.X introduces many new technologies but they are not discussed here. For more - information about Apache 2.X, please see Apache 2.X, please see . @@ -4058,10 +4058,10 @@ zone "10.168.192.in-addr.arpa" in { Apache configuration file - The main Apache HTTP Server configuration file is + The main Apache HTTP Server configuration file is installed as /usr/local/etc/apache/httpd.conf on &os;. - This file is a typical Unix text configuration file with + This file is a typical &unix; text configuration file with comment lines beginning with the # character. A comprehensive description of all possible configuration options is outside the scope of this book, so @@ -4074,7 +4074,7 @@ zone "10.168.192.in-addr.arpa" in { This specifies the default directory hierarchy for - the Apache installation. Binaries are stored in the + the Apache installation. Binaries are stored in the bin and sbin subdirectories of the server root, and configuration files are stored in @@ -4116,7 +4116,7 @@ zone "10.168.192.in-addr.arpa" in { It is always a good idea to make backup copies of your - Apache configuration file before making changes. Once you are + Apache configuration file before making changes. Once you are satisfied with your initial configuration you are ready to start running Apache. @@ -4190,7 +4190,7 @@ Log file format --> To setup Apache to use Name-based Virtual Hosting add an entry like the following to - your httpd.conf. + your httpd.conf: NameVirtualHost * @@ -4226,7 +4226,7 @@ DocumentRoot /www/someotherdomain.tld Apache modules - There are many different Apache modules available to add + There are many different Apache modules available to add functionality to the basic server. The FreeBSD Ports Collection provides an easy way to install Apache together with some of the @@ -4248,7 +4248,7 @@ DocumentRoot /www/someotherdomain.tld that you can run a secure web server on &os;. If you have not yet installed - Apache, then a version of Apache + Apache, then a version of Apache that includes mod_ssl may be installed with the www/apache13-modssl port. @@ -4262,16 +4262,16 @@ DocumentRoot /www/someotherdomain.tld Perl - The Apache/Perl integration project brings together the - full power of the Perl programming language and the Apache - HTTP server. With the mod_perl module it is possible to - write Apache modules entirely in Perl. In addition, the + The Apache/Perl integration project brings together the + full power of the Perl programming language and the Apache + HTTP Server. With the mod_perl module it is possible to + write Apache modules entirely in Perl. In addition, the persistent interpreter embedded in the server avoids the overhead of starting an external interpreter and the penalty of Perl start-up time. If you have not yet installed - Apache, then a version of Apache + Apache, then a version of Apache that includes mod_perl may be installed with the www/apache13-modperl port. @@ -4285,7 +4285,7 @@ DocumentRoot /www/someotherdomain.tld Preprocessor is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Its - syntax draws upon C, Java, and Perl, and is easy to learn. + syntax draws upon C, &java;, and Perl, and is easy to learn. The main goal of the language is to allow web developers to write dynamically generated webpages quickly, but you can do much more with PHP.