>  기사  >  백엔드 개발  >  Nginx를 사용하여 PHP 서버 구축

Nginx를 사용하여 PHP 서버 구축

WBOY
WBOY원래의
2016-08-08 09:28:411325검색

일반적으로 PHP 파싱 서버로 Apache를 사용합니다. 이번에는 강력한 역방향 프록시 서버인 Nginx를 사용하여 PHP 서버를 구축합니다. Nginx PHP 서버를 구축하기 위해 Linux 배포판 Ubuntu를 예로 들어 보겠습니다.

먼저 Nginx를 다운로드하고 설치하세요
<code>sudo apt-get install nginx
</code>
설치가 완료된 후 Nginx를 시작하세요
<code>sudo /etc/init.d/nginx start
</code>
이때, 브라우저를 열고 http://를 입력하세요. localhost/ Nginx 서버가 성공적으로 설치되었음을 나타내는 Welcome to nginx! 페이지에 도달했습니다. 다음으로 PHP5를 설치하겠습니다.
<code>sudo apt-get install php5-fpm
</code>
설치가 성공한 후, 서버에서 요청한 PHP 파일 검색을 PHP CGI로 구문 분석할 수 있도록 Nginx의 가상 머신 구성을 수정해야 합니다. Nginx 가상 머신 구성 파일 /etc/nginx/sites-available/default
<code>sudo vim /etc/nginx/sites-available/default
</code>
를 편집한 후 내부 구성을 다음 구성 콘텐츠로 수정합니다.
<code># 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;
#   }
#}
</code>
변경 사항 다시 로드 방금 Nginx 구성을 만들었습니다
<code>sudo /etc/init.d/nginx reload
</code>
그런 다음 /usr/share/nginx/www/ 디렉토리에 새 phpinfo.php 파일을 생성하여 php의 구성 및 환경 정보를 봅니다
<code>sudo vim /usr/share/nginx/www/phpinfo.php
</code>
phpinfo.php에 다음 내용을 입력하세요.
<code><?php
  phpinfo();
?>
</code>
버전 및 기타 정보를 포함한 PHP 정보 페이지를 보려면 브라우저에 http://localhost/phpinfo.php를 입력합니다. PHP5에는 필요한 경우 설치하도록 선택할 수도 있습니다. 일반적으로 이러한 모듈은 php5-mysql과 같이 php5-로 시작합니다.
<code>sudo apt-get install php5-mysql
</code>
PHP 모듈을 설치한 후 PHP5를 다시 시작하는 것을 잊지 마세요.
<code>sudo /etc/init.d/php5-fpm restart
</code>

위 내용은 관련 내용을 포함하여 Nginx를 사용하여 PHP 서버를 구축하는 방법을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.