운영체제 웹 방화벽 Apache mod_security 모듈 설치하기
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 165회 작성일 24-05-22 22:46본문
tar xzfv modsecurity-2.9.0.tar.gz
cd modsecurity-2.9.0
./configure
make && make install // 이 명령에서 에러가 난다면.... 아래 명령을 실행하고 다시 실행하면 된다.
# ./configure --with-apxs=/usr/local/apache/bin/apxs --with-apr=/usr/local/apache/bin/apr-1-config --with-apu=/usr/local/apache/bin/apu-1-config
cp modsecurity.conf-recommended /usr/local/apache/conf/modsecurity.conf
cp unicode.mapping /usr/local/apache/conf/
▶ httpd.conf에 해당 모듈 추가
vi /usr/local/apache/conf/httpd.conf
LoadModule security2_module modules/mod_security2.so
<IfModule !mod_unique_id.c>
LoadModule unique_id_module modules/mod_unique_id.so
</IfModule>
▶ 아파치 재시작
/usr/local/apache/bin/apachectl restart
관련링크
댓글목록
등록된 댓글이 없습니다.