Nginx 설치하기
- 꼬반
- 2015. 6. 10. 14:21
====== NGINX 설치하기 ======
참조 : http://blog.beany.co.kr/archives/2422
참조 : http://www.solanara.net/solanara/nginx
참조 : http://xinet.kr/tc/131
참조 : http://blog.outsider.ne.kr/792
참조 : http://nginx.org/download/
참조 : http://www.ssanweb.com/bbs/board.php?bo_table=menual&wr_id=57
참조 : http://lovedev.tistory.com/664
참조 : http://ra2kstar.tistory.com/169
===== 1. nginx 설치 =====
==== nginx 다운 ====
http://nginx.org/download
에서 최신판 다운로드
==== 의존 패키지 설치 ====
<code>
yum -y install gcc g++ cpp gcc-c++
yum -y install pcre-devel
yum -y install openssl openssl-devel
yum -y install gd gd-devel
</code>
==== 설치 ====
다운받은 폴더에서 파일의 압축을 해제한 후 설치 디렉토리로 이동
<code>
tar xvzf nginx-1.2.8.tar.gz
cd nginx-1.2.8
</code>
컴파일을 위해 다음의 configure 옵션으로 실행
(위치나 경로는 자신에 맞게 수정하여 사용할 것.)
(/var/lib/nginx 경로도 수정하여 사용하면 됨.)
<code>
./configure --prefix=/opt/nginx-1.2.7 \
--conf-path=/opt/nginx-1.2.7/conf/nginx.conf \
--sbin-path=/opt/nginx-1.2.7/sbin/nginx \
--lock-path=/var/lock/nginx.lock \
--pid-path=/var/run/nginx.pid \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
--http-scgi-temp-path=/var/lib/nginx/scgi \
--http-log-path=/opt/nginx-1.2.7/log/access.log \
--error-log-path=/opt/nginx-1.2.7/log/error.log \
--with-http_addition_module \
--with-http_degradation_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-http_image_filter_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_realip_module \
--user=nobody \
--group=nobody
</code>
컴파일 후 설치합니다.
<code>
make && make install
</code>
==== 서비스 등록 ====
nginx 를 서비스로 실행할 수 있도록 서비스 파일을 편집
<code>
vi /etc/init.d/nginx
</code>
아래의 내용을 서비스 스크립트 파일에 입력 한 후 저장
<code>
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /opt/nginx-1.2.7/conf/nginx.conf
# pidfile: /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/opt/nginx-1.2.7/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/opt/nginx-1.2.7/conf/nginx.conf"
lockfile=/var/lock/subsys/nginx
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
configtest || return $?
stop
start
}
reload() {
configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac
</code>
스크립트에 실행권한 설정
<code>
chmod +x /etc/init.d/nginx
</code>
시스템 재기동시에도 자동으로 실행될 수 있게 설정
<code>
chkconfig nginx on
chkconfig --list nginx
</code>
==== 방화벽 설정 ====
방화벽 정책파일 편집
<code>
iptables -F // 초기화
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT // 위가 안될경우
</code>
방화벽 정책 저장 및 재시작
<code>
service iptables save
service iptables restart
</code>
==== nginx.conf 파일 설정 ====
설치 전 설정에서 prefix한 위치로 이동하면 기본 설정파일이 있음. 이를 conf 폴더 밑으로 복사
설정파일에서 참조하는 mime.types 파일도 기본 존재 함. conf 폴더 밑으로 복사
<code>
cp nginx.conf conf/
cp mime.types conf/
</code>
설정에 맞게 수정하여 준다.
<code>
server {
listen 80;
server_name 서버네임;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html 기본 폴더로 사용할 위치 지정;
index index.html index.htm, index.php;
}
</code>
==== nginx 서비스 시작 및 테스트 ====
<code>
service nginx start
</code>
웹브라우저에서 정상적으로 화면이 나오면 nginx 서버 설치 완료
===== 2. php 연동하기 =====
==== php, php-fpm 설치 ====
yum으로 php, php-fpm 설치
<code>
yum -y install php, php-fpm
</code>
==== php-fpm.conf 수정 ====
php-fpm 서비스의 실행자를 수정해야 한다. nginx 를 nobody로 실행하므로 php-fpm도 nobody로 설정
<code>
vi /etc/php-fpm.d/www.conf
...
; Unix user/group of processes
; Note: The user is mandatory. If the group is not set, the default user's group
; will be used.
; RPM: apache Choosed to be able to access some dir as httpd
user = nobody
; RPM: Keep a group allowed to write in log dir.
group = nobody
...
</code>
==== php-fpm 서비스 시작 ====
<code>
service php-fpm start
</code>
==== nginx.conf 수정 ====
이작업에 앞서 nginx 폴더에 가면 fastcgi_params 라는 파일이 있는데 이것을 conf 폴더로 복사하여 준다.
<code>
location ~ \.php$ {
root 루트를 적어준다.;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
</code>
nginx 시스템 재시작.
==== 확인하여 보기 ====
index.html 파일이나 새로 php 파일을 생성하여 php가 정상적으로 연동되었는지 확인한다.
<code>
<?php
phpinfo();
?>
</code>
정상적으로 나오면 완료.
==== 추가 ====
에러로그에 아래와 같은 로그가 남는 경우
<code>
FastCGI sent in stderr: "PHP message: PHP Warning: phpinfo(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Seoul' for 'KST/9.0/no DST' instead in /html/test.php on line 2" while reading upstream, client:
</code>
이것은 time_zone 설정이 되어 있지 않아서 그렇다.
php.ini 를 수정하여 준다.
<code>
vi /etc/php.ini
...
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
; date.timezone =
date.timezone = Asia/Seoul
...
</code>