首頁  >  文章  >  CMS教程  >  Ubuntu LNMP怎麼部署WordPress

Ubuntu LNMP怎麼部署WordPress

藏色散人
藏色散人轉載
2021-05-14 15:12:172094瀏覽

下面由WordPress教學專欄為大家介紹Ubuntu LNMP怎麼部署 WordPress,希望對需要的朋友有幫助!

軟體版本說明:

  • Ubuntu: 16.04 LTS;

  • WordPress: 4.7 zh-CN

適用人群:初級PHP 入門者和廣大想擁有自己網站的設計師

安裝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 拉取WordPress 原始碼:

git clone https://github.com/JellyBool/wordpress.git /var/www/wordpress

設定Mysql

透過下面的指令登入#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

注意上面的jellyboollaravist是根據你自己的需求來設定的。

設定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

至此,打完收工。

以上是Ubuntu LNMP怎麼部署WordPress的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除