changeset 263:be3772a799a2

English translation of "Installing nginx".
author Ruslan Ermilov <ru@nginx.com>
date Wed, 21 Dec 2011 09:26:46 +0000
parents 676abe405aba
children 06b4c1f3149d
files xml/en/GNUmakefile xml/en/docs/index.xml xml/en/docs/install.xml
diffstat 3 files changed, 249 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/GNUmakefile
+++ b/xml/en/GNUmakefile
@@ -4,6 +4,7 @@ DOCS =									\
 		introduction						\
 		howto							\
 		faq							\
+		install							\
 		windows							\
 		control							\
 		hash							\
--- a/xml/en/docs/index.xml
+++ b/xml/en/docs/index.xml
@@ -29,6 +29,10 @@
 <list>
 
 <item>
+<a href="/en/docs/install.xml"/>
+</item>
+
+<item>
 <a href="/en/docs/windows.xml"/>
 </item>
 
new file mode 100644
--- /dev/null
+++ b/xml/en/docs/install.xml
@@ -0,0 +1,244 @@
+<!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
+
+<article name="Installing nginx"
+         link="/en/docs/install.html"
+         lang="en">
+
+<section>
+
+<para>
+The build is configured using the <command>configure</command> command.
+It defines various aspects of the system, including the methods nginx
+is allowed to use for connection processing.
+At the end it creates a <command>Makefile</command>.
+The <command>configure</command> command supports the following parameters:
+<list>
+
+<listitem>
+<para>
+<command>--prefix=&lt;<value>path</value>&gt;</command>&mdash;defines
+a directory that will keep server files.
+This same directory will also be used for all relative paths set by
+<command>./configure</command> (except for paths to libraries sources)
+and in the <command>nginx.conf</command> configuration file.
+It is set to the <command>/usr/local/nginx</command> directory by default.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--sbin-path=&lt;<value>path</value>&gt;</command>&mdash;sets
+the name of an nginx executable file.
+This name is used only during installation.
+By default the file is named
+<command>&lt;<value>prefix</value>&gt;/sbin/nginx</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--conf-path=&lt;<value>path</value>&gt;</command>&mdash;sets
+the name of an <command>nginx.conf</command> configuration file.
+If needs be, nginx can always be started with a different configuration file,
+by specifying it in the command-line parameter
+<nobr><command>-c &lt;<value>file</value>&gt;</command></nobr>.
+By default the file is named
+<command>&lt;<value>prefix</value>&gt;/conf/nginx.conf</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--pid-path=&lt;<value>path</value>&gt;</command>&mdash;sets
+the name of an nginx.pid file that will store the process ID
+of the main process.
+After installation, the file name can always be changed in the
+<command>nginx.conf</command> configuration file using the
+<link doc="ngx_core_module.xml" id="pid"/> directive.
+By default the file is named
+<command>&lt;<value>prefix</value>&gt;/logs/nginx.pid</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--error-log-path=&lt;<value>path</value>&gt;</command>&mdash;sets
+the name of the primary error, warnings, and diagnostic file.
+After installation, the file name can always be changed in the
+<command>nginx.conf</command> configuration file using the
+<link doc="ngx_core_module.xml" id="error_log"/> directive.
+By default the file is named
+<command>&lt;<value>prefix</value>&gt;/logs/error.log</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--http-log-path=&lt;<value>path</value>&gt;</command>&mdash;sets
+the name of the primary request log file of the HTTP server.
+After installation, the file name can always be changed in the
+<command>nginx.conf</command> configuration file using the
+<link doc="http/ngx_http_log_module.xml" id="access_log"/> directive.
+By default the file is named
+<command>&lt;<value>prefix</value>&gt;/logs/access.log</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--user=&lt;<value>name</value>&gt;</command>&mdash;sets
+the name of an unprivileged user whose credentials will be used
+by worker processes.
+After installation, the name can always be changed in the
+<command>nginx.conf</command> configuration file using the
+<link doc="ngx_core_module.xml" id="user"/> directive.
+The default user name is nobody.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--group=&lt;<value>name</value>&gt;</command>&mdash;sets
+the name of a group whose credentials will be used
+by worker processes.
+After installation, the name can always be changed in the
+<command>nginx.conf</command> configuration file using the
+<link doc="ngx_core_module.xml" id="user"/> directive.
+By default, a group name is set to the name of an unprivileged user.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-select_module</command><br/>
+<command>--without-select_module</command>&mdash;enables or disables
+building a module that allows the server to work with the
+<c-func>select</c-func> method.
+This module is built automatically if the platform does not appear
+to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-poll_module</command><br/>
+<command>--without-poll_module</command>&mdash;enables or disables
+building a module that allows the server to work with the
+<c-func>poll</c-func> method.
+This module is built automatically if the platform does not appear
+to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--without-http_gzip_module</command>&mdash;disables building a module
+that <link doc="http/ngx_http_gzip_module.xml">compresses responses</link>
+of an HTTP server.
+The zlib library is required to build and run this module.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--without-http_rewrite_module</command>&mdash;disables building a
+module that allows an HTTP server to
+<link doc="http/ngx_http_rewrite_module.xml">redirect requests and change URI
+of requests</link>.
+The PCRE library is required to build and run this module.
+The module is experimental&mdash;its directives may change in the future.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--without-http_proxy_module</command>&mdash;disables building an
+HTTP server <link doc="http/ngx_http_proxy_module.xml">proxying module</link>.
+<!--
+The MD5 library is required to build and run this module.
+-->
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-http_ssl_module</command>&mdash;enables building a module
+that adds the <link doc="http/ngx_http_ssl_module.xml">HTTPS protocol
+support</link> to an HTTP server.
+This module is not built by default.
+The OpenSSL library is required to build and run this module.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-pcre=&lt;<value>путь</value>&gt;</command>&mdash;sets
+the path to the sources of the PCRE library.
+The library distribution (version
+4.4&mdash;6.1) needs to be downloaded from the
+<link url="http://www.pcre.org">PCRE</link> site and extracted.
+The rest is done by nginx's ./configure and make.
+The library is required for regular expressions support in the
+<link doc="http/ngx_http_core_module.xml" id="location"/> directive
+and for the
+<link doc="http/ngx_http_rewrite_module.xml">ngx_http_rewrite_module</link>
+module.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-zlib=&lt;<value>путь</value>&gt;</command>&mdash;sets
+the path to the sources of the zlib library.
+The library distribution (version
+1.1.3&mdash;1.2.2) needs to be downloaded from the
+<link url="http://www.gzip.org/zlib/">zlib</link> site and extracted.
+The rest is done by nginx's ./configure and make.
+The library is required for the
+<link doc="http/ngx_http_gzip_module.xml">ngx_http_gzip_module</link> module.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-cc-opt=&lt;<value>parameters</value>&gt;</command>&mdash;sets
+additional parameters that will be added to the CFLAGS variable.
+When using the system PCRE library under FreeBSD,
+<command>--with-cc-opt="-I /usr/local/include"</command>
+should be specified.
+If the number of files supported by <c-func>select</c-func> needs to be
+increased it can also be specified here such as this:
+<command>--with-cc-opt="-D FD_SETSIZE=2048"</command>.
+</para>
+</listitem>
+
+<listitem>
+<para>
+<command>--with-ld-opt=&lt;<value>parameters</value>&gt;</command>&mdash;sets
+additional parameters that will be used during linking.
+When using the system PCRE library under FreeBSD,
+<command>--with-ld-opt="-L /usr/local/lib"</command>
+should be specified.
+</para>
+</listitem>
+
+</list>
+
+</para>
+
+<para>
+Example of parameters usage (all of this needs to be typed in one line):
+<programlisting>
+./configure
+    --sbin-path=/usr/local/nginx/nginx
+    --conf-path=/usr/local/nginx/nginx.conf
+    --pid-path=/usr/local/nginx/nginx.pid
+    --with-http_ssl_module
+    --with-pcre=../pcre-4.4
+    --with-zlib=../zlib-1.1.3
+</programlisting>
+</para>
+
+</section>
+
+</article>