CentOS 7 用户怎样安装 LNMP

2020-10-29 科技 77阅读
Centos下可以用yum install mysql*
在Centos下,直接yum install nginx不行,要先处理下源,
下面是安装完整流程,也十分简单:
rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum -y install nginx
yum -y php-fpm
service php-fpm restart
service nginx restart
chkconfig php-fpm on
chkconfig nginx on
下面是配置:
vi /etc/nginx/conf.d/default.conf
[plain] view plaincopyprint?
server {
listen 80;
server_name localhost;
autoindex on;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;

location / {
root /var/www/html;
index index.html index.htm index.php;
}

location ~ \.php$ {
root /var/www/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}....
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com