码迷,mamicode.com
首页 > 其他好文 > 详细

lnmp wordpress...

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

标签:local   data   替换   maria   mariadb   res   group   name   数据库   

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...

标签:local   data   替换   maria   mariadb   res   group   name   数据库   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!