comparison xml/en/docs/windows.xml @ 3076:be1ef1d56e96

Updated Windows archive names.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 09 Apr 2024 18:20:21 +0300
parents 4795c2ae5066
children
comparison
equal deleted inserted replaced
3075:6fcdefd1df4e 3076:be1ef1d56e96
3 Copyright (C) Nginx, Inc. 3 Copyright (C) Nginx, Inc.
4 --> 4 -->
5 5
6 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd"> 6 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
7 7
8 <article name="nginx for Windows" 8 <article name="freenginx for Windows"
9 link="/en/docs/windows.html" 9 link="/en/docs/windows.html"
10 lang="en" 10 lang="en"
11 rev="5"> 11 rev="6">
12 12
13 <section> 13 <section>
14 14
15 <para> 15 <para>
16 Version of nginx for Windows uses the native Win32 API (not the Cygwin emulation 16 Version of freenginx for Windows uses the native Win32 API
17 layer). 17 (not the Cygwin emulation layer).
18 Only the <c-func>select</c-func> and <c-func>poll</c-func> (1.15.9) 18 Only the <c-func>select</c-func> and <c-func>poll</c-func> (1.15.9)
19 connection processing methods are currently used, 19 connection processing methods are currently used,
20 so high performance and scalability should not be expected. 20 so high performance and scalability should not be expected.
21 Due to this and some other known issues version of nginx for Windows 21 Due to this and some other known issues version of freenginx for Windows
22 is considered to be a <i>beta</i> version. 22 is considered to be a <i>beta</i> version.
23 At this time, it provides almost the same functionality as a UNIX version 23 At this time, it provides almost the same functionality as a UNIX version
24 of nginx except for 24 of nginx except for
25 XSLT filter, image filter, GeoIP module, and embedded Perl language. 25 XSLT filter, image filter, GeoIP module, and embedded Perl language.
26 </para> 26 </para>
27 27
28 <para> 28 <para>
29 To install nginx/Windows, <link doc="../download.xml">download</link> 29 To install freenginx/Windows, <link doc="../download.xml">download</link>
30 the latest mainline version distribution (<mainline_version/>), 30 the latest mainline version distribution (<mainline_version/>),
31 since the mainline branch of nginx contains all known fixes. 31 since the mainline branch of nginx contains all known fixes.
32 Then unpack the distribution, go to the 32 Then unpack the distribution, go to the
33 nginx-<mainline_version/> 33 freenginx-<mainline_version/>
34 directory, and run <command>nginx</command>. 34 directory, and run <command>nginx</command>.
35 Here is an example for the drive C: root directory: 35 Here is an example for the drive C: root directory:
36 36
37 <programlisting> 37 <programlisting>
38 cd c:\ 38 cd c:\
39 unzip nginx-<mainline_version/>.zip 39 unzip freenginx-<mainline_version/>.zip
40 cd nginx-<mainline_version/> 40 cd freenginx-<mainline_version/>
41 start nginx 41 start nginx
42 </programlisting> 42 </programlisting>
43 43
44 Run the <command>tasklist</command> command-line utility 44 Run the <command>tasklist</command> command-line utility
45 to see nginx processes: 45 to see nginx processes:
61 If an error page is displayed instead of the expected page, also look 61 If an error page is displayed instead of the expected page, also look
62 for the reason in the <path>logs\error.log</path> file. 62 for the reason in the <path>logs\error.log</path> file.
63 </para> 63 </para>
64 64
65 <para> 65 <para>
66 nginx/Windows uses the directory where it has been run as the prefix 66 freenginx/Windows uses the directory where it has been run as the prefix
67 for relative paths in the configuration. 67 for relative paths in the configuration.
68 In the example above, the prefix is 68 In the example above, the prefix is
69 <path>C:\nginx-<mainline_version/>\</path>. 69 <path>C:\freenginx-<mainline_version/>\</path>.
70 Paths in a configuration file must be specified in UNIX-style using 70 Paths in a configuration file must be specified in UNIX-style using
71 forward slashes: 71 forward slashes:
72 72
73 <programlisting> 73 <programlisting>
74 access_log logs/site.log; 74 access_log logs/site.log;
75 root C:/web/html; 75 root C:/web/html;
76 </programlisting> 76 </programlisting>
77 </para> 77 </para>
78 78
79 <para> 79 <para>
80 nginx/Windows runs as a standard console application (not a service), 80 freenginx/Windows runs as a standard console application (not a service),
81 and it can be managed using the following commands: 81 and it can be managed using the following commands:
82 82
83 <table note="yes"> 83 <table note="yes">
84 84
85 <tr> 85 <tr>