mirror of
				https://github.com/apache/httpd.git
				synced 2025-10-31 19:10:37 +03:00 
			
		
		
		
	git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@835645 13f79535-47bb-0310-9956-ffa450edef68
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="EUC-KR" ?>
 | |
| <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 | |
| <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
 | |
| <!-- English Revision: 105989:833090 (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.
 | |
| -->
 | |
| 
 | |
| <modulesynopsis metafile="mod_env.xml.meta">
 | |
| 
 | |
| <name>mod_env</name>
 | |
| <description>CGI 스크립트나 SSI 페이지에 전달할 환경변수를
 | |
| 수정한다</description>
 | |
| <status>Base</status>
 | |
| <sourcefile>mod_env.c</sourcefile>
 | |
| <identifier>env_module</identifier>
 | |
| <summary>
 | |
|     <p>이 모듈은 CGI 스크립트나 SSI 페이지에 전달할 환경변수를
 | |
|     조절한다. 웹서버를 시작한 쉘에서 환경변수를 가져올 수 있다.
 | |
|     아니면 설정과정중에 환경변수를 설정하고 제거할 수 있다.</p>
 | |
| </summary>
 | |
| <seealso><a href="../env.html">환경변수</a></seealso>
 | |
| 
 | |
| <directivesynopsis>
 | |
| <name>PassEnv</name>
 | |
| <description>쉘에서 환경변수를 가져온다</description>
 | |
| <syntax>PassEnv <var>env-variable</var> [<var>env-variable</var>]
 | |
| ...</syntax>
 | |
| <contextlist><context>server config</context><context>virtual host</context>
 | |
| <context>directory</context><context>.htaccess</context></contextlist>
 | |
| <override>FileInfo</override>
 | |
| 
 | |
| <usage>
 | |
|     <p>웹서버를 실행한 쉘의 특정 환경변수를 CGI 스크립트나
 | |
|     SSI 페이지로 전달한다.</p>
 | |
| 
 | |
|     <example><title>예제</title>
 | |
|       PassEnv LD_LIBRARY_PATH
 | |
|     </example>
 | |
| </usage>
 | |
| </directivesynopsis>
 | |
| 
 | |
| <directivesynopsis>
 | |
| <name>SetEnv</name>
 | |
| <description>환경변수를 설정한다</description>
 | |
| <syntax>SetEnv <var>env-variable</var> <var>value</var></syntax>
 | |
| <contextlist><context>server config</context><context>virtual host</context>
 | |
| <context>directory</context><context>.htaccess</context></contextlist>
 | |
| <override>FileInfo</override>
 | |
| 
 | |
| <usage>
 | |
|     <p>CGI 스크립트나 SSI 페이지에 전달할 환경변수를 설정한다.</p>
 | |
| 
 | |
|     <example><title>예제</title>
 | |
|       SetEnv SPECIAL_PATH /foo/bin
 | |
|     </example>
 | |
| </usage>
 | |
| </directivesynopsis>
 | |
| 
 | |
| <directivesynopsis>
 | |
| <name>UnsetEnv</name>
 | |
| <description>환경변수를 제거한다</description>
 | |
| <syntax>UnsetEnv <var>env-variable</var> [<var>env-variable</var>]
 | |
| ...</syntax>
 | |
| <contextlist><context>server config</context><context>virtual host</context>
 | |
| <context>directory</context><context>.htaccess</context></contextlist>
 | |
| <override>FileInfo</override>
 | |
| 
 | |
| <usage>
 | |
|     <p>CGI 스크립트나 SSI 페이지에 환경변수를 전달하지 않는다.</p>
 | |
| 
 | |
|     <example><title>예제</title>
 | |
|       UnsetEnv LD_LIBRARY_PATH
 | |
|     </example>
 | |
| </usage>
 | |
| </directivesynopsis>
 | |
| 
 | |
| </modulesynopsis>
 | |
| 
 |