>  기사  >  백엔드 개발  >  Centos에서 Lnmp 구축

Centos에서 Lnmp 구축

WBOY
WBOY원래의
2016-07-28 08:27:051099검색

설치에 앞서 램프 설치 과정을 보실 수 있습니다

http://blog.csdn.net/zph1234/article/details/51248124

1.

yum install yum-priorities -y  
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm  

rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm  

yum install nginx  

systemctl start nginx.service #启动nginx  

systemctl stop nginx.service #停止  

systemctl restart nginx.service #重启  
systemctl enable nginx.service #设置开机启动 

2. nginx 포트 번호를 변경합니다(필요에 따라)
    cd /etc/nginx/conf.d/  
    vim default.conf  
    把listen 80改成listen 81  

    systemctl restart nginx.service #重启nginx  

3. /ip:81 즉 nginx 홈페이지를 볼 수 있습니다

4. 다음 단계는 php-fpm
yum install php-fpm  

    systemctl start php-fpm.service #启动php-fpm  
    systemctl enable php-fpm.service #设置开机启动  
을 설치하는 것입니다. 5. nginx 구성 파일을 변경하여 php를 식별합니다.

vi /etc/nginx /conf.d/default.conf, 이전 #을 제거하고 fastcgi_param을 변경하세요

location ~ \.php$ {  
    root           html;  
    fastcgi_pass   127.0.0.1:9000;  
    fastcgi_index  index.php;  
    fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/$fastcgi_script_name;  
    include        fastcgi_params;  
}

6.

/usr/에서 share/nginx/html에 새 test.php를 만듭니다.

php를 보려면 http://ip:81/test.php를 방문하세요. nginx의 페이지


위 내용은 관련 내용을 포함하여 Centos에서의 Lnmp 구축을 소개한 내용으로, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

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