mod_perl + apache2 연동
리눅스/APACHE2016. 4. 27. 15:38
반응형
mod_perl 2.0.4 받아서 설치한다.
다운로드는 http://apache.perl.org/download/index.html
# tar -xvzf mod_perl-2.x.xx.tar.gz
# cd modperl-2.0
# perl Makefile.PL MP_APXS=$HOME/httpd/prefork/bin/apxs
# make && make test && make install
httpd.conf 수정
LoadModule perl_module modules/mod_perl.so
vhosts.conf 수정
<Location /사용하고자하는 디렉토리>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options ExecCGI
allow from all
PerlSendHeader On
</Location>
전체 설정에서 pl 파일 만 적용하고 싶다면...
<Directory /home/>
<FilesMatch "\.(pl)$">
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options ExecCGI
allow from all
PerlSendHeader On
</FilesMatch>
</Directory>
[출처] http://onlybible.tistory.com/1650
반응형
'리눅스 > APACHE' 카테고리의 다른 글
특정 파일이 소속된 rpm 패키지 찾기 (0) | 2017.03.06 |
---|---|
APACHE 2.4 + PHP 5.5 + MYSQL 5.6 설치 (0) | 2017.01.02 |
버전별 다운로드 (Apache, PHP, MySQL, JDK, Tomcat, Curl) (0) | 2015.11.30 |
mod_rewrite 룰 설정에 대한 자세한 설명 (0) | 2015.01.16 |
특정 확장자 <a> 링크 무조건 다운받게 하기 (0) | 2015.01.16 |
댓글()