forked from nginx/nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
1,555 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
|
||
charset_map koi8-r windows-1251 { | ||
|
||
95 95 ; # bullet | ||
|
||
9A A0 ; # | ||
|
||
9C B0 ; # ° | ||
|
||
9E B7 ; # · | ||
|
||
A3 B8 ; # small yo | ||
|
||
B3 A8 ; # capital YO | ||
|
||
BF A9 ; # (C) | ||
|
||
C0 FE ; # small yu | ||
C1 E0 ; # small a | ||
C2 E1 ; # small b | ||
C3 F6 ; # small ts | ||
C4 E4 ; # small d | ||
C5 E5 ; # small ye | ||
C6 F4 ; # small f | ||
C7 E3 ; # small g | ||
C8 F5 ; # small kh | ||
C9 E8 ; # small i | ||
CA E9 ; # small j | ||
CB EA ; # small k | ||
CC EB ; # small l | ||
CD EC ; # small m | ||
CE ED ; # small n | ||
CF EE ; # small o | ||
|
||
D0 EF ; # small p | ||
D1 FF ; # small ya | ||
D2 F0 ; # small r | ||
D3 F1 ; # small s | ||
D4 F2 ; # small t | ||
D5 F3 ; # small u | ||
D6 E6 ; # small zh | ||
D7 E2 ; # small v | ||
D8 FC ; # small soft sign | ||
D9 FB ; # small y | ||
DA E7 ; # small z | ||
DB F8 ; # small sh | ||
DC FD ; # small e | ||
DD F9 ; # small shch | ||
DE F7 ; # small ch | ||
DF FA ; # small hard sign | ||
|
||
E0 DE ; # capital YU | ||
E1 C0 ; # capital A | ||
E2 C1 ; # capital B | ||
E3 D6 ; # capital TS | ||
E4 C4 ; # capital D | ||
E5 C5 ; # capital YE | ||
E6 D4 ; # capital F | ||
E7 C3 ; # capital G | ||
E8 D5 ; # capital KH | ||
E9 C8 ; # capital I | ||
EA C9 ; # capital J | ||
EB CA ; # capital K | ||
EC CB ; # capital L | ||
ED CC ; # capital M | ||
EE CD ; # capital N | ||
EF CE ; # capital O | ||
|
||
F0 CF ; # capital P | ||
F1 DF ; # capital YA | ||
F2 D0 ; # capital R | ||
F3 D1 ; # capital S | ||
F4 D2 ; # capital T | ||
F5 D3 ; # capital U | ||
F6 C6 ; # capital ZH | ||
F7 C2 ; # capital V | ||
F8 DC ; # capital soft sign | ||
F9 DB ; # capital Y | ||
FA C7 ; # capital Z | ||
FB D8 ; # capital SH | ||
FC DD ; # capital E | ||
FD D9 ; # capital SHCH | ||
FE D7 ; # capital CH | ||
FF DA ; # capital hard sign | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
types { | ||
text/html html htm shtml; | ||
text/xml xml rss; | ||
text/css css; | ||
text/plain txt; | ||
|
||
image/gif gif; | ||
image/png png; | ||
image/jpeg jpeg jpg; | ||
image/x-icon ico; | ||
|
||
application/pdf pdf; | ||
application/x-shockwave-flash swf; | ||
application/x-javascript js; | ||
|
||
audio/mpeg mp3; | ||
audio/x-realaudio ra; | ||
|
||
video/mpeg mpeg mpg; | ||
video/quicktime mov; | ||
video/x-msvideo avi; | ||
video/x-ms-wmv wmv; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
user nobody; | ||
worker_processes 3; | ||
|
||
#error_log logs/error.log; | ||
#pid logs/nginx.pid; | ||
|
||
|
||
events { | ||
connections 1024; | ||
} | ||
|
||
|
||
http { | ||
include conf/mime.types; | ||
default_type application/octet-stream; | ||
|
||
sendfile on; | ||
|
||
#gzip on; | ||
|
||
server { | ||
listen 80; | ||
|
||
charset on; | ||
source_charset koi8-r; | ||
|
||
#access_log logs/access.log; | ||
|
||
location / { | ||
root html; | ||
index index.html index.htm; | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
<!ELEMENT configuration (length, start, indent, changes+) > | ||
|
||
<!ELEMENT length (#PCDATA) > | ||
<!ELEMENT start (#PCDATA) > | ||
<!ELEMENT indent (#PCDATA) > | ||
|
||
<!ELEMENT changes (title, length, | ||
bugfix, feature, change, workaround, | ||
(month, month, month, month, month, month, | ||
month, month, month, month, month, month)?) > | ||
|
||
<!ATTLIST changes lang ( ru | en) #REQUIRED> | ||
|
||
<!ELEMENT title (#PCDATA) > | ||
|
||
<!ELEMENT bugfix (#PCDATA) > | ||
<!ELEMENT feature (#PCDATA) > | ||
<!ELEMENT change (#PCDATA) > | ||
<!ELEMENT workaround (#PCDATA) > | ||
|
||
<!ELEMENT month (#PCDATA) > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
<!ENTITY nbsp " " > | ||
|
||
|
||
<!ELEMENT change_log (changes)* > | ||
<!ATTLIST change_log title CDATA #REQUIRED > | ||
|
||
<!ELEMENT changes (change)* > | ||
<!ATTLIST changes ver CDATA #REQUIRED | ||
date CDATA #REQUIRED | ||
> | ||
|
||
<!ELEMENT change (para)* > | ||
<!ATTLIST change type (bugfix | feature | change | workaround) #IMPLIED > | ||
|
||
<!ELEMENT para (#PCDATA | at | br | nobr)* > | ||
<!ATTLIST para lang (ru | en) #IMPLIED > | ||
|
||
<!ELEMENT at EMPTY > | ||
<!ELEMENT br EMPTY > | ||
<!ELEMENT nobr (#PCDATA) > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<html> | ||
<head> | ||
<title>Welcome to nginx!</title> | ||
</head> | ||
<body bgcolor="white" text="black"> | ||
<center><h1>Welcome to nginx!</h1></center> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (C) 2002-2004 Igor Sysoev | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE | ||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
* SUCH DAMAGE. | ||
* | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
Documentation is available at http://sysoev.ru/nginx/ only. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="KOI8-R" ?> | ||
<!DOCTYPE configuration SYSTEM "../dtd/change_log_conf.dtd" > | ||
|
||
<configuration> | ||
|
||
<length>78</length> | ||
|
||
<start> *) </start> | ||
<indent> </indent> | ||
|
||
<changes lang="ru"> | ||
<title>éÚÍÅÎÅÎÉÑ × </title> | ||
<length>66</length> | ||
|
||
<bugfix>éÓÐÒÁ×ÌÅÎÉÅ</bugfix> | ||
<feature>äÏÂÁ×ÌÅÎÉÅ</feature> | ||
<change>éÚÍÅÎÅÎÉÅ</change> | ||
<workaround>éÚÍÅÎÅÎÉÅ</workaround> | ||
</changes> | ||
|
||
<changes lang="en"> | ||
<title>Changes with </title> | ||
<length>65</length> | ||
|
||
<bugfix>Bugfix</bugfix> | ||
<feature>Feature</feature> | ||
<change>Change</change> | ||
<workaround>Workaround</workaround> | ||
|
||
<month> Jan </month> | ||
<month> Feb </month> | ||
<month> Mar </month> | ||
<month> Apr </month> | ||
<month> May </month> | ||
<month> Jun </month> | ||
<month> Jul </month> | ||
<month> Aug </month> | ||
<month> Sep </month> | ||
<month> Oct </month> | ||
<month> Nov </month> | ||
<month> Dec </month> | ||
|
||
</changes> | ||
|
||
</configuration> |
Oops, something went wrong.