Centos 7 NGINX + PHP 설치 및 설정

3151 단어 centosnginxlinux
먼저 NGINX 를 컴 파일 설치 합 니 다:
1. 의존 패키지 설치
yum install -y gcc-c++  pcre pcre-devel  zlib zlib-devel openssl openssl-devel

2. configure 설정 실행
cd /usr/local/src/nginx-1.14.0 && ./configure --prefix=/usr/local/nginx

4. 컴 파일 설치
make && make install

5. NGINX 시작
/usr/local/nginx/sbin/nginx //  
/usr/local/nginx/sbin/nginx -s stop //  
/usr/local/nginx/sbin/nginx -s reload //  
ps -ef | grep nginx  //      

컴 파일 설치 PHP + PHP - FPM
1. 설치 의존
yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers

2. configure 설정 실행
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --enable-mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --enable-mysqlnd-compression-support --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --enable-intl --with-libmbfl --enable-ftp --with-gd --enable-gd-jis-conv --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --with-gettext --disable-fileinfo --enable-opcache --with-pear --enable-maintainer-zts --with-ldap=shared --without-gdbm

3. 컴 파일 설치
make && make install

PHP 프로필 복사 php.ini-development 및 이름 바 꾸 기 php.ini
cp /usr/local/src/php-7.2.0/php.ini-development /usr/local/php-7.2.0/php.ini-development /usr/local/php/etc/

mv php.ini-development php.ini

4. php - fpm 시작
/usr/local/php/sbin/php-fpm

서비스 상태 보기
ps -A|grep php

php - fpm 프로 세 스 가 있 고 오류 가 없 으 면 PHP 테스트 페이지 를 작성 합 니 다.
vim /usr/local/nginx/html/index.php

NGINX 프로필 수정
vim /usr/local/nginx/conf/nginx.conf

루트 설정 추가
server {
listen 80;
server_name index.php.com;
root /usr/local/nginx/html/index.php;

PHP 설정 의 설명 을 삭제 하고 ducument_root 변 수 를 추가 합 니 다.
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $ducument_root$fastcgi_script_name;
include fastcgi_params;
}

프로필 검사
/usr/local/nginx/sbin/nginx -t

문제 없 음 을 확보 한 후 nginx 를 다시 불 러 옵 니 다.
/usr/local/nginx/sbin/nginx -s reload

브 라 우 저 진입http://192.168.3.211/index.php
테스트 페이지 가 정상적으로 표시 되 고 설정 이 성공 하 였 습 니 다.

좋은 웹페이지 즐겨찾기