centos7 install lnmp
Posted s--s
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 install lnmp相关的知识,希望对你有一定的参考价值。
centos7 install lnmp
yum install epel-release
yum install php php-fpm nginx mariadb-devel mariadb-server mariadb
test php 模块
vim /etc/nginx/nginx.conf
notice:在location 下面添加这一行就可以
location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
最后:在nginx网站的根目录添加01.php 文件
vi 01.php
<?php
phpinfo();
?>
以上是关于centos7 install lnmp的主要内容,如果未能解决你的问题,请参考以下文章
How to install OpenBazaar Server in CentOS7