Nginx 로 PHP 서버 구축

5205 단어 nginxphp
더 읽 기
일반적으로 우 리 는 Apache 를 PHP 의 분석 서버 로 사용 하 는데, 이번 에는 Nginx 라 는 강력 한 역방향 프 록 시 서버 를 이용 하여 PHP 서버 를 구축한다.다음은 리 눅 스 버 전 우 분투 의 경우 Nginx 의 PHP 서버 를 구축 합 니 다.
일단 Nginx 설치
sudo apt-get install nginx

설치 완료 후 Nginx 시작
sudo /etc/init.d/nginx start

이때 브 라 우 저 를 열 고 입력 합 니 다.http://localhost/Welcome to nginx!Nginx 서버 가 성공 적 으로 설치 되 었 음 을 설명 하 는 페이지 입 니 다.
다음은 PHP 5 설치
sudo apt-get install php5-fpm

설치 에 성공 하면, 브 라 우 저가 요청 한 php 파일 을 php cgi 로 해석 할 수 있 도록 Nginx 의 가상 컴퓨터 설정 을 수정 해 야 합 니 다.Nginx 가상 컴퓨터 프로필 편집 / etc / nginx / sites - available / default
sudo vim /etc/nginx/sites-available/default

그 다음 에 안의 설정 을 다음 과 같은 설정 내용 으로 변경 합 니 다.
# You may add here your
# server {
#   ...
# }
# statements for each of your virtual hosts to this file

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

server {
    listen   80; ## listen for ipv4; this line is default and implied
    #listen   [::]:80 default ipv6only=on; ## listen for ipv6

    root /usr/share/nginx/www;
    index index.html index.htm index.php;

    # Make site accessible from http://localhost/
    server_name localhost;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to index.html
        try_files $uri $uri/ /index.html;
        # Uncomment to enable naxsi on this location
        # include /etc/nginx/naxsi.rules
    }

    location /doc/ {
        alias /usr/share/doc/;
        autoindex on;
        allow 127.0.0.1;
        deny all;
    }

    # Only for nginx-naxsi : process denied requests
    #location /RequestDenied {
        # For example, return an error code
        #return 418;
    #}

    error_page 404 /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/www;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

        # With php5-cgi alone:
        fastcgi_pass 127.0.0.1:9000;
        # With php5-fpm:
        #fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny all;
    }
}

# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
#   listen 8000;
#   listen somename:8080;
#   server_name somename alias another.alias;
#   root html;
#   index index.html index.htm;
#
#   location / {
#       try_files $uri $uri/ /index.html;
#   }
#}

# HTTPS server
#
#server {
#   listen 443;
#   server_name localhost;
#
#   root html;
#   index index.html index.htm;
#
#   ssl on;
#   ssl_certificate cert.pem;
#   ssl_certificate_key cert.key;
#
#   ssl_session_timeout 5m;
#
#   ssl_protocols SSLv3 TLSv1;
#   ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
#   ssl_prefer_server_ciphers on;
#
#   location / {
#       try_files $uri $uri/ /index.html;
#   }
#}

변경 한 Nginx 설정 다시 불 러 오기
sudo /etc/init.d/nginx reload

그리고 / usr / share / nginx / www / 디 렉 터 리 에 phpinfo. php 파일 을 새로 만 들 면 php 설정 과 환경 정 보 를 볼 수 있 습 니 다
sudo vim /usr/share/nginx/www/phpinfo.php

phpinfo. php 에 다음 내용 을 입력 하 십시오.


브 라 우 저 에 입력 합 니 다.http://localhost/phpinfo.phpPHP 정보 페이지, 버 전 등 이 있 습 니 다.
PHP 5 는 지원 하 는 모듈 도 많 습 니 다. 필요 하 다 면 설 치 를 선택 할 수 있 습 니 다. 보통 이 모듈 들 은 php 5 - 시작 입 니 다. 예 를 들 어 php 5 - mysql 은 Ubuntu 에 설치 하면 됩 니 다.
sudo apt-get install php5-mysql

PHP 모듈 설치 후 PHP 5 를 다시 시작 하 는 것 을 잊 지 마 세 요. 다음 명령 을 실행 하면 다시 시작 할 수 있 습 니 다.
sudo /etc/init.d/php5-fpm restart

좋은 웹페이지 즐겨찾기