head	1.8;
access;
symbols;
locks
	root:1.8; strict;
comment	@# @;


1.8
date	2016.02.05.18.42.04;	author root;	state Exp;
branches;
next	1.7;

1.7
date	2016.02.05.17.41.19;	author root;	state Exp;
branches;
next	1.6;

1.6
date	2012.12.20.16.24.17;	author root;	state Exp;
branches;
next	1.5;

1.5
date	2012.12.20.16.22.05;	author root;	state Exp;
branches;
next	1.4;

1.4
date	2012.12.20.16.20.36;	author root;	state Exp;
branches;
next	1.3;

1.3
date	2009.12.04.14.11.35;	author root;	state Exp;
branches;
next	1.2;

1.2
date	2009.12.04.14.09.57;	author root;	state Exp;
branches;
next	1.1;

1.1
date	2009.12.04.14.01.38;	author root;	state Exp;
branches;
next	;


desc
@/opt/nforge/var/wiki/modurl/data/text/FrontPage
@


1.8
log
@1.235.149.42;;oops 김정균 ;;
@
text
@== 프로젝트 소개 ==

mod url은 파일 시스템의 인코딩과 브라우저에서 요청하는 URL 인코딩이 서로 다른 경우에 발생할 수 있는 문제점을 해결하기 위한 웹서버 모듈을 제공 합니다. 이 프로젝트는 현재 apache 1, apache 2, lighttpd 용 모듈을 제공하고 있습니다.

이 프로젝트는 2016.02.06 부터 http://github.com/joungkyun/mod_url 으로 이전하였습니다. 이슈 등록은 github를 이용해 주시기 바랍니다.


== 프로젝트 라이센스 ==

mod_url의 license는 현재 각 웹서버의 License를 따릅니다. 그러므로 Apache 용 모듈의 경우 Apache License, Version 2.0를 따르면, lighttpd 용 모듈의 경우 BSD license를 따릅니다.

== 설치 방법 ==

 * 설치 방법은 source 의 README 파일에 있는 내용을 옮겨 적은 것입니다. 빌드시에는 소스 안의 README 파일을 참조 하십시오.

 * Apache
  * 동적 빌드 (dynamic build)
   * apxs가 설치 되어 있어야 합니다. Redhat 계열에서 RPM으로 apache를 설치 하셨다면 apache-devel 또는 httpd-devel package가 필요 합니다.
   {{{#!vim sh
shell> apxs -i -c mod_url.c

또는 소스 디렉토리에 GNUMakefile 이 존재 한다면

shell> make
}}}

   * apache 용 mod_url은 mod_userdir module에 dependency가 있습니다. 만약 웹서버에 mod_userdir module이 없거나 또는 loading을 원치 않는다면 다음과 같이 constant를 지정해 주셔야 합니다.
   {{{#!vim sh
shell> apxs -i -c -DURL_NOUSERDIR mod_url.c

또는 소스 디렉토리에 GNUMakefile 이 존재 한다면

shell> make EXTRA_CFLAGS="-DURL_NOUSERDIR"
}}}

  * 정적 빌드 (static build)
   * apache1
   {{{#!vim sh
shell> cp -af mod_url.c /path/apache-src/modules/extra/
shell> cd /path/apache-src
shell> ./configure .... --add-module=modurl.c ...

만약 mod_userdir 문제가 있다면

shell> EXTRA_CFLAGS="-DURL_NOUSERDIR" ./configure ... --add-module=mod_url.c ..
}}}
   * apache2
   {{{#!vim sh
shell> cp -r mod_url/ /path/apache-src/src/modules/url
shell> rm /path/apache-src/src/modules/url/GNUmakefile
shell> cd /path/apache-src
shell> ./configure .... --enable-modules=all ..
    or
shell> ./configure --enable-url=shared ...
}}}

 * lighttpd
  * lighttpd는 현재 1.4.x 대의 모듈을 제공 합니다.

 {{{#!vim sh
shell> cp -af mod_url.c /path/lighttpd-src/src/
shell> cd /path/lighttpd-src
shell> patch -p1 /some/path/mod_url-lighttpd-src/lighttpd-mod-url.patch
shell> ./configurea
shell> make
shell> make install
}}}

== 설정 ==

 * 설정 방법은 source 의 README 파일에 있는 내용을 옮겨 적은 것입니다. 설정시에는 소스 안의 README 파일을 참조 하십시오.

 * Apache
 {{{#!vim config
LoadModule  userdir_module   modules/mod_userdir.so
LoadModule  redurl_module    modules/mod_url.so

<IfModule mod_url.c>
   CheckURL On
   ServerEncoding EUC-KR
   ClientEncoding UTF-8
</IfModule>
}}}
  * mod_userdir 을 loading 할 경우, mod_url 보다 mod_userdir을 먼저 load 해야 합니다.
  * ServerEncoding의 경우 서버의 한글 파일 이름이 euc-kr charset으로 되어 있다면 euc-kr을 지정하고, utf-8로 되어 있다면 UTF-8로 지정 합니다.
  * ClientEncoding은 ServerEncoding이 UTF-8이면 local charset을, local charset이면 UTF-8을 지정하면 됩니다.
  * 디렉토리별로 지정을 하고 싶을 경우에는 <Directory> 지시자를 이용할 수 있습니다.
  {{{#!vim config
<Directory /path/some>
    <IfModule mod_url.c>
        CheckURL Off
    </IfModule>
</Directory>
}}}

 * lighttpd
  * module load
  {{{#!vim config
server.modules = (
    ....,
    "mod_url"
)
}}}
  * configuration
  {{{#!vim config
url.enabled = "enable"
url.server_encoding = "euc-kr"
url.client_encoding = "utf-8"

}}}
@


1.7
log
@1.235.149.42;;oops 김정균 ;;2.4 미지원 제거
@
text
@d5 2
@


1.6
log
@1.233.25.109;;oops 김정균 ;;
@
text
@a4 2
 * 2012/12 현재 apache 2.4 에서는 빌드 되지 않습니다. (개발 환경이 없어 업데이트를 못하고 있습니다. ^^)
 * 개발 환경을 지원해 주실 수 있는 분은 oops 골뱅 kldp.org 로 메일 주세요.
@


1.5
log
@1.233.25.109;;oops 김정균 ;;
@
text
@d5 3
@


1.4
log
@1.233.25.109;;oops 김정균 ;;
@
text
@d26 1
a26 1
shell> apxs -i -c mod_url.c
a29 8
shell> make

만약 httpd에서 mod_userdir module을 사용하지 않는다면 다음과 같이 빌드합니다.

shell> apxs -i -c -DURL_NOUSERDIR mod_url.c

또는

@


1.3
log
@203.215.192.138;;oops 김정균 ;;
@
text
@d26 8
d36 1
a36 1
또는 소스 디렉토리에 GNUMakefile 이 존재 한다면
@


1.2
log
@203.215.192.138;;oops 김정균 ;;
@
text
@d11 2
d68 2
@


1.1
log
@203.215.192.138;;oops 김정균 ;;
@
text
@d53 2
d64 24
d89 15
a103 18
 * 프로젝트 라이센스
 * 프로그램 설치 방법
 * 프로그램 사용 방법

이 프로젝트에서 제공하는 기능은 다음과 같습니다.

 * 마일스톤: 버그를 마일스톤 계획에 따라 분류할 수 있습니다.
 * 게시판: 누구나 자유롭게 글을 올리고 답글을 주고받을 수 있습니다.
 * 버그: 프로젝트 진행에 관련된 문제점, 제안사항 등에 대해 담당자를 지정하고 효과적으로 관리합니다.
 * 코드: 소스코드를 내려받는 방법, 소스코드의 변경내역 등을 확인하실 수 있습니다.
 * 다운로드: 이 프로젝트에서 제공하는 파일 릴리즈 현황을 보실 수 있습니다.
 * 그외에도 개발 협업에 필요한 여러가지 기능들이 포함되어 있습니다~

더 많은 정보가 필요하시다면...

 * 좀더 많은 이용 사례는 [http://dev.naver.com 네이버 개발자 센터]를 참고하세요.
 * 위키위키의 문법에 대해 더 알고싶으신 분은 WikiTutorial 을 참고하세요.
 * 이 사이트는 [http://dev.naver.com/projects/nforge nFORGE]로 만들어졌습니다.
@
