当前位置:首页 > CMS教程 > WordPress > 列表

nginx 环境下搭建wordpress

发布:smiling 来源: PHP粉丝网  添加日期:2018-12-18 09:38:02 浏览: 评论:0 

配置nginx:

  1. cat /usr/local/nginx/conf/vhost/wordpress.conf . 
  2. server { 
  3.     listen       80; 
  4.     server_name wp.tangotz.com ; 
  5.     root    /usr/local/nginx/html/wordpress/; 
  6.     #charset koi8-r; 
  7.  
  8.     #access_log  "pipe:rollback logs/host.access_log interval=1d baknum=7 maxsize=2G"  main; 
  9.  
  10.     location / { 
  11.         index  index.html index.php; 
  12.         root    /usr/local/nginx/html/wordpress/; 
  13.     } 
  14.  
  15.     location ~ \.php$ { 
  16.         include fastcgi.conf; 
  17.         fastcgi_pass 127.0.0.1:9000; 
  18.     } 
  19.  

安装php mysql

yum install php-fpm php php-gd php-mysql mysql-server

下载wordpress并释放到nginx目录下

  1. cd /usr/local/nginx/html 
  2. wget https://cn.wordpress.org/wordpress-4.9.1-zh_CN.zip 
  3. unzip wordpress-4.9.1-zh_CN.zip 

注意nginx运行用户 php-fpm运行用户 wordpress文件所有者保持一致

nginx运行用户,一般在nginx.conf中

php-fpm运行用户,yum安装一般为apache,配置在/etc/php-fpm.d/www.conf中

配置数据库

  1. CREATE DATABASE guoguo; 
  2. grant all on guoguo.* to 'guo'@'localhost' identified by 'guoguo' ; 

以上代码在mysql命令行中执行

先创建一个名为guoguo 的库,在将 guoguo 这个库的所有权限赋予guo这个用户,仅限本机localhost,密码为guoguo

以上信息需要牢记,需要在稍后wordpress安装配置过程中使用。

Tags: nginx wordpress

分享到: