-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.xml.ko
157 lines (123 loc) · 5.2 KB
/
handler.xml.ko
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?xml version="1.0" encoding="EUC-KR" ?>
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
<!-- English Revision: 151408:1673945 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manualpage metafile="handler.xml.meta">
<title>아파치에서 핸들러 사용</title>
<summary>
<p>이 문서는 아파치에서 핸들러를 사용하는 방법을 설명한다.</p>
</summary>
<section id="definition">
<title>핸들러가 무엇인가</title>
<related>
<modulelist>
<module>mod_actions</module>
<module>mod_asis</module>
<module>mod_cgi</module>
<module>mod_imagemap</module>
<module>mod_info</module>
<module>mod_mime</module>
<module>mod_negotiation</module>
<module>mod_status</module>
</modulelist>
<directivelist>
<directive module="mod_actions">Action</directive>
<directive module="mod_mime">AddHandler</directive>
<directive module="mod_mime">RemoveHandler</directive>
<directive module="core">SetHandler</directive>
</directivelist>
</related>
<p>파일을 요청할때 아파치가 내부적으로 수행할 작업을
"핸들러(handler)"라고 한다. 일반적으로 파일은 파일 종류에
따라 암묵적인 핸들러를 가지고 있다. 모든 파일은 보통 간단히
서버가 서비스하지만, 어떤 파일 종류는 따로 "처리된다(handled)".</p>
<p>Apache 1.1부터 핸들러를 명시적으로 사용할 수 있게 되었다.
파일 종류와 관계없이 핸들러를 파일의 확장자나 위치에 따라
지정할 수 있다. 이는 더 훌륭한 방법이고 파일을 종류와 핸들러
둘 모두와 연계할 수 있기때문에 좋다. (<a
href="mod/mod_mime.html#multipleext">여러 확장자를 가진 파일</a>도
참고)</p>
<p>핸들러는 서버나 모듈로 구현하여, <directive
module="mod_actions">Action</directive> 지시어로 추가할
수 있다. 표준 배포본에 있는 기본 핸들러는 다음과 같다:</p>
<ul>
<li><strong>default-handler</strong>: 정적인 내용을
처리하기위해 기본적으로 사용하는 핸들러
<code>default_handler()</code>를 사용하여 파일을 보낸다.
(core)</li>
<li><strong>send-as-is</strong>: HTTP 헤더가 있는 파일을
그대로 보낸다. (<module>mod_asis</module>)</li>
<li><strong>cgi-script</strong>: 파일을 CGI로 처리한다.
(<module>mod_cgi</module>)</li>
<li><strong>imap-file</strong>: imagemap 규칙 파일로
처리한다. (<module>mod_imagemap</module>)</li>
<li><strong>server-info</strong>: 서버의 설정 정보를
알려준다. (<module>mod_info</module>)</li>
<li><strong>server-status</strong>: 서버의 상태를 보고한다.
(<module>mod_status</module>)</li>
<li><strong>type-map</strong>: 내용협상에 사용할
type map으로 처리한다.
(<module>mod_negotiation</module>)</li>
</ul>
</section>
<section id="examples">
<title>예제</title>
<section id="example1">
<title>CGI 스크립트를 사용하여 정적인 내용 수정하기</title>
<p>다음 지시어는 확장자가 <code>html</code>인 파일을
요청할 경우 <code>footer.pl</code> CGI 스크립트를 띄운다.</p>
<example>
Action add-footer /cgi-bin/footer.pl<br/>
AddHandler add-footer .html
</example>
<p>CGI 스크립트는
(<code>PATH_TRANSLATED</code> 환경변수가 지칭하는) 원래
요청한 문서를 적절히 수정한 후 보낸다.</p>
</section>
<section id="example2">
<title>HTTP 헤더를 포함하는 파일</title>
<p>다음 지시어는 HTTP 헤더를 포함하는 파일에
<code>send-as-is</code> 핸들러를 지시한다.
<code>/web/htdocs/asis/</code> 디렉토리 안에 있는 모든
파일은 확장자와 관계없이 <code>send-as-is</code> 핸들러가
처리한다.</p>
<example>
<Directory /web/htdocs/asis><br/>
SetHandler send-as-is<br/>
</Directory>
</example>
</section>
</section>
<section id="programmer">
<title>프로그래머를 위한 정보</title>
<p>핸들러 기능을 구현하기위해 사용함직한
<a href="developer/API.html">Apache API</a>가 추가되었다.
특히 <code>request_rec</code> 구조체에 새로운 필드가
추가되었다:</p>
<example>
char *handler
</example>
<p>모듈이 핸들러를 사용하려면, 요청의
<code>invoke_handler</code> 단계 이전에
<code>r->handler</code>에 핸들러 이름을 지정해주기만
하면 된다. 핸들러는 content type 대신 핸들러 이름을 사용한
것을 제외하고는 전과 같이 구현되었다. 꼭 지킬 필요는 없지만
핸들러 이름에 슬래쉬를 사용하지 않고, 단어들 사이에 빼기
기호를 사용하는 것이 일반적이다. 그래서 핸들러 이름이
media type과 겹치지 않는다.</p>
</section>
</manualpage>