반응형
참조문서가 2001년도의 오래된 문서이지만,
기본은 변하지 않아서 그대로 해도 무리가 없다.
# 설치 문서
기본은 변하지 않아서 그대로 해도 무리가 없다.
# 설치 문서
http://www.emh.co.kr/xhtml/perl_apache_for_windows.html
요약 버젼~~
*. 다운로드 기준 ( 2011년 10월 10일 현재 )
*. 다운로드 기준 ( 2011년 10월 10일 현재 )
1. 아파치 서버 다운로드
http://www.apache.org/dist/httpd/binaries/win32/
httpd-2.0.64-win32-x86-no_ssl.msi
2. 펄 다운로드
http://www.activestate.com/activeperl/downloads
ActivePerl-5.12.4.1205.msi
3. 프로그램 설치
3.1 아파치 설치
Custom 선택 D:\ApacheGroup 에 설치
웹브라우저에서 http://localhost 입력 -> 예상한 웹사이트 대신 이게 보이냐? 메시지 확인
3.2 펄 설치
4. 설정
D:\Apache Group\Apache2\conf\httpd.conf 수정
DocumentRoot "C:/Program Files/Apache Group/Apache/htdoc"
치환 ->
DocumentRoot "D:/study/perl/webroot"
<Directory "C:/Program Files/Apache Group/Apache/htdoc">
치환 ->
<Directory "D:/study/perl/webroot">
ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache/cgi-bin/"
치환->
ScriptAlias /cgi-bin/ "D:/study/perl/webroot/cgi-bin/"
추가
<Directory "D:/study/perl/webroot">
AllowOverride None
Options ExecCGI
AddHandler cgi-script .pl .cgi
Order allow,deny
Allow from all
</Directory>
5. Apache Restart ( 트레이 아이콘 클릭 > Restart )
6. 테스트 파일 작성
D:\study\perl\webroot\cgi-bin 에 hello.pl 파일 작성
다음을 입력
#!C:/Perl/bin/perl.exe
print "Content-type: text/html\n\n";
print "<html><head><title>Hello, World!</title></head>";
print "<body><p>Hello, world!</body></html>"
저장후,
웹브라우저에 다음 입력
http://localhost/cgi-bin/hello.pl
Hello. world! 가 보이면 설치 성공!
이제 신나는 펄 웹 프로그래밍!!
반응형