如果你是设计师,极力推荐你到 Laravist 看 《从零部署一个网站》系列视频!当然是全免费的!
软件版本说明:
Ubuntu:
16.04 LTS
;wordpress:
4.7 zh-CN
安装 PHP7.1
1.首先添加 PPA
sudo apt-get update sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/PHP -y sudo apt-get update
2.然后,安装 PHP7.1
sudo apt-get -y install PHP7.1 sudo apt-get -y install PHP7.1-MysqL PHP7.1-fpm
安装 MysqL
sudo apt-get -y install MysqL-server-5.7
设置密码就,OK。
至此,基本的 wordpress 环境就准备完毕了。
部署 wordpress
git clone https://github.com/JellyBool/wordpress.git /var/www/wordpress
配置 MysqL
MysqL -u root -p
在 MysqL 执行:
CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; CREATE USER 'jellybool' IDENTIFIED BY 'laravist'; GRANT ALL PRIVILEGES ON wordpress.* TO 'jellybool'; quit
注意上面的
jellybool
和laravist
是根据你自己的需求来设置的。
配置 Nginx
打开配置文件:
vim /etc/Nginx/sites-available/default
进行以下配置配置:
root /var/www/wordpress; index index.PHP index.html index.htm index.Nginx-debian.html; # 注意我们添加了 index.PHP location / { try_files $uri $uri/ /index.PHP?$query_string; } location ~ \.PHP$ { try_files $uri /index.PHP =404; fastcgi_split_path_info ^(.+\.PHP)(/.+)$; fastcgi_pass unix:/var/run/PHP/PHP7.1-fpm.sock; fastcgi_index index.PHP; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
访问你的域名,就可以进行非常出名的 wordpress
五分钟安装过程啦!安装完毕之后,你就拥有一个 wordpress 的站点啦!
最后
配置 wordpress 文件上传,打开 wp-config.php
文件:
define('FS_METHOD','direct'); define('FS_CHMOD_DIR',0777); define('FS_CHMOD_FILE',0777);
安装其他的 PHP 扩展
sudo apt install -y PHP7.1-gd PHP7.1-mbstring PHP7.1-xmlrpc
至此,打完收工。
原文链接:https://www.f2er.com/ubuntu/352586.html