WebServer(4)
-
[Apache] VirtualHost Redirect
ServerName traffer.com ServerAlias merp.traffer.com Redirect / admin.traffer.com
2011.07.12 -
[Apache] Apache rewrite Module
Apache rewrite Module -작성자 : 윤일- Apache 는 추가적으로 사용할 수 있는 유용한 모듈들을 제공합니다. 이번강좌에서는 Apache의 URL Rewrite 모듈을 사용하기 위한 컴파일,설치와 httpd.conf의 설정방법 그리고 활용방법에 대해 알아보겠습니다. Apache 다운로드 : http://www.apache.org 1. rewrite 모듈을 사용하기 위한 Apache 컴파일옵션 Rewrite 모듈을 쓰기위한 Apache 컴파일 옵션은 --enable-rewrite 입니다. Configure 실행시에 --enable-rewrite 만 추가하시면 Apache에서 rewrite 모듈을 사용할 있게 됩니다. [root@superuser root]# ./cofigure prefi..
2011.01.25 -
[Apache] apache2 + tomcat6.0 연동 :: apache2.2.6 + tomcat 6.0.13
설치환경 Windows XP sp2 J2SE 6 Apache 2.2.6 Tomcat 6.0.13 1. http://www.apache.org/dist/httpd/binaries/win32/ 에서 apache_2.2.6-win32-x86-no_ssl.msi 다운로드 및 설치 [ 이전 버전이 설치되었다면, 프로그램 제거 후 폴더도 모두 삭제해줄것 ] [ 설치 완료 후 http://localhost 로 it works! 란 문구가 떴다면 올바른 설치 ] 2. http://www.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/win32/jk-1.2.25/ 에서 mod_jk-apache-2.2.4.so를 다운받아 mod_jk.so로 이름변경후 /apache설치 디렉..
2011.01.21 -
[Apache] 아파치 setting
httpd.conf 파일은 크게 세부분으로 나누어져 있다. Section 1: Global Environment : 아파치 전체적인 영향이 미치는 설정 Section 2: 'Main' server configuration : 주 서버에 대한 설정 Section 3: Virtual Hosts : 가상 호스트에 대한 설정 자, 그럼 이제부터 이 아파치웹서버의 모든 환경을 설정하는 아파치환경파일 httpd.conf파일의 설정방법에 대해서 상세히 알아보도록 하자. ### Section 1: Global Environment 전제환경설정 파트로 Section 1에서 설정하는 것들은 아파치 웹서버에 전반적인 영향을 미친다. ServerType standalone 서버의 구동방법으로는 standalone과 inetd..
2011.01.21