首页 > 其他 > 详细

lnmp wordpress...

时间:2020-03-15 13:33:08      阅读:73      评论:0      收藏:0      [点我收藏+]

lnmp略

/etc/nginx/conf.d/default.conf 

-------------------------------------------

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html/wordpress;
index index.php;
location ~ \.php$ {
root /usr/share/nginx/html/wordpress;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location /status {
stub_status;
access_log off;
deny 10.0.0.1;
allow all;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

-------------------------------------------

nginx -t

unzip wordpress.zip到/usr/share/nginx/html目录中

修改nginx、php-fpm配置中的操作用户

groupadd -g 666 www

useradd -g 666 -u 666 -M -s /sbin/nologin www

chown -R www.www wordpress

sed -i ‘/^user/c user www;‘ /etc/nginx/nginx.conf  以user开头的整行替换c后面的 

sed -i ‘/^group/c guoup = www ‘ /etc/php-fpm.d/www.conf

sed -i ‘/^user/c user = www ‘ /etc/php-fpm.d/www.conf

创建数据库

MariaDB [(none)]> create database wordpress;
Query OK, 1 row affected (0.00 sec)

systemctl reload nginx php-fpm

ss -lntup|egrep ‘3306|80|9000‘

lnmp wordpress...

原文:https://www.cnblogs.com/Leaders543/p/12496984.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!