server CentOS 6 - Apache 2.4.1 컴파일 / 보안 설정
2012.04.15 10:06
참고 문서 |
---|
시스템 환경: CentOS 6 (32bit)
라이브러리
# yum install gcc libtool apr-util-devel pcre-devel openssl-devel # wget http://ftp.jaist.ac.jp/pub/apache/apr/apr-1.4.6.tar.gz # tar xvfz apr-1.4.6.tar.gz # cd apr-1.4.6 # ./configure && make && make install # wget http://ftp.jaist.ac.jp/pub/apache/apr/apr-util-1.4.1.tar.gz # tar xvfz apr-util-1.4.1.tar.gz # cd apr-util-1.4.1 # ./configure --with-apr=/usr/local/apr && make && make install
다운로드 / 컴파일
# wget http://apache.mirror.cdnetworks.com/httpd/httpd-2.4.2.tar.gz # tar xvfz httpd-2.4.2.tar.gz # cd httpd-2.4.2 # ./configure --prefix=/usr/local/apache --enable-module=so --enable-so --enable-rewrite --enable-ssl=shared --with-ssl --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr --enable-nonportable-atomics=yes --with-mpm=worker # make # make install
방화벽
# vi /etc/sysconfig/iptables
-I INPUT -p tcp --dport 80 -j ACCEPT -I INPUT -p tcp --dport 443 -j ACCEPT
# service iptables restart # /usr/local/apache/bin/apachectl start It works! # /usr/local/apache/bin/apachectl stop
httpd.conf 설정
기본적인 내용은 생략하였습니다.
# vi /usr/local/apache/conf/httpd.conf
Timeout, KeepAliveTimeout 값은 직접 테스트하면서 맞는 값을 찾아야 합니다.
mod_security
http://www.modsecurity.org/download/
# yum install libxml2 libxml2-devel # tar xvfz modsecurity-apache_2.6.5.tar.gz # cd modsecurity-apache_2.6.5 # ./configure --with-apxs=/usr/local/apache/bin/apxs # make && make install # cp modsecurity.conf-recommended /usr/local/apache/conf/modsecurity.conf # vi /usr/local/apache/conf/httpd.conf
LoadModule security2_module modules/mod_security2.so Include conf/modsecurity.conf # 아래쪽에 추가
VirtualHost 팁
자동시작
# vi /etc/rc.d/rc.local
rm -rf /usr/local/apache/logs/* # 로그파일 삭제 /usr/local/apache/bin/apachectl start
관련문서
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
21 |
Table 태그
![]() | 2010.05.23 | 4672 |
20 |
포커스 요소의 테두리와 웹 접근성
![]() | 2010.05.23 | 4342 |
19 |
리눅스 자동 시작
![]() | 2010.05.21 | 16090 |
18 |
putty
![]() | 2010.05.21 | 13643 |
17 | php 에서 파일 권한 설정 | 2010.05.21 | 4843 |
16 |
list-style
![]() | 2010.05.21 | 5366 |
15 |
jQuery 쿠키
![]() | 2010.05.19 | 5175 |
14 |
php 쿠키 생성, 읽기
![]() | 2010.05.19 | 7373 |
13 |
php 에서 텍스트 파일을 생성, 수정하기
![]() | 2010.05.19 | 10181 |
12 |
파일 불러오기
![]() | 2010.05.17 | 5723 |
11 |
php 암호화와 복호와
![]() | 2010.05.17 | 7617 |
10 |
php 현재 시각 출력하기
![]() | 2010.05.17 | 4725 |
9 |
html 파일에서 php 구문 숨기기
![]() | 2010.05.17 | 7115 |
8 |
검색엔진 등록
![]() | 2010.05.12 | 142494 |
7 |
VPS (가상 호스팅) 비교
![]() | 2010.05.12 | 62366 |
6 |
sAPM
![]() | 2010.05.12 | 20461 |
5 |
Lighttpd 설치
![]() | 2010.05.11 | 20873 |
4 |
Zend Optimizer + eAccelerator + Suhosin
![]() | 2010.05.11 | 18452 |
3 |
PHP 설치
![]() | 2010.05.11 | 15259 |
2 |
Apache 설치
![]() | 2010.05.11 | 16845 |
SELINUX 에러인 경우 아파치를 허용해준다.
chcon -R -h -t httpd_sys_content_t /home