在Debian 9上安装Fork CMS

Fork是一个用PHP编写的开源CMS。Fork的源代码托管在GitHub上。本指南将向您展示如何在一个新的Debian 9 VPS实例上安装Fork CMS。

需求

PHP 7.1或更高版本。

以下PHP扩展:

  • cURL
  • libxml
  • DOM
  • SimpleXML
  • SPL
  • PDO (与MySQL驱动程序)
  • mb_string
  • iconv
  • GD2图形库
  • json
  • PCRE
  • intl

MySQL 5.0或更高版本。

Nginx

检查Debian版本。

lsb_release -ds

# Debian GNU/Linux 9.4 (stretch)

确保您的系统是最新的。

apt update && apt upgrade -y

安装所需要的包。

apt install -y apt-transport-https sudo curl wget dirmngr

使用sudo访问创建一个新的non-root帐户并切换到它。

adduser johndoe --gecos "John Doe"
usermod -aG sudo johndoe
su - johndoe

注意:用你的用户名替换johndoe。

设置时区。

timedatectl list-timezones

sudo timedatectl set-timezone Region/City

步骤1 -安装PHP和所需的PHP扩展,MySQL和Nginx

Debian没有在其默认软件库中提供最新的PHP版本。我们需要添加一个社区维护的第三方存储库。

sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list
sudo apt update

安装PHP 7.2和所需的PHP扩展。

sudo apt install -y php7.2 php7.2-cli php7.2-fpm php7.2-common php7.2-curl php7.2-mbstring php7.2-gd php7.2-intl php7.2-mysql php7.2-xml php7.2-json

检查版本。

php --version
PHP 7.2.5-1+0~20180505045740.21+stretch~1.gbpca2fa6 (cli) (built: May  5 2018 04:57:44) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.2.5-1+0~20180505045740.21+stretch~1.gbpca2fa6, Copyright (c) 1999-2018, by Zend Technologies

第二步——MySQL/MariaDB和设置数据库

安装MySQL - MariaDB。

sudo apt install -y mysql-server

检查MySQL / MariaDB版本。

mysql --version
# mysql  Ver 15.1 Distrib 10.1.26-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2

运行mysql_secure安装脚本以提高MySQL的安全性,并设置MySQL根用户的密码。

sudo mysql_secure_installation

作为根用户连接到MySQL shell。

sudo mysql -u root -p
# Enter password

为Fork CMS创建一个空的MySQL数据库和用户,并记住凭证。

步骤3 -安装和配置Nginx

安装Nginx。

sudo apt install -y nginx

检查版本。

sudo nginx -v
# nginx version: nginx/1.10.3

运行sudo vim /etc/nginx/sit -available/fork。conf并为Fork配置Nginx。

server {
    listen 80;
    root /var/www/fork;
    index index.php index.html;
    server_name example.com;
    location / {
    # Checks whether the requested url exists as a file $uri or directory $uri/ in the root, else redirect to /index.php.
        try_files $uri $uri/ @redirects;
    }
    location @redirects {
        rewrite ^ /index.php;
    }
    location ~ \.php$ {
        try_files $uri =404;
        include fastcgi_params;
        fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; # Make sure to doublecheck this!
        fastcgi_index index.php;
        fastcgi_read_timeout 60;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
    # Don't pollute the logs with common requests
    location = /robots.txt  { access_log off; log_not_found off; }
    location = /favicon.ico { access_log off; log_not_found off; }
    # As Fork CMS has the app_root as doc_root, we need to restrict access to a few things for security purposes!
    location ~* ^/(composer\..*|vendor\/.*|Procfile$|\.git\/.*|src\/Console.*|.*\.gitignore|\.editorconfig|\.travis.yml|autoload\.php|bower\.json|phpunit\.xml\.dist|.*\.md|app\/logs\/.*|app\/config\/.*|src\/Frontend\/Cache\/CompiledTemplates.*|src\/Frontend\/Cache\/Locale\/.*\.php|src\/Frontend\/Cache\/Navigation\/.*\.php|src\/Frontend\/Cache\/Search\/.*|src\/Backend\/Cache\/CompiledTemplates\/.*|src\/Backend\/Cache\/Locale\/.*\.php)$ {
        deny all;
        access_log off;
        log_not_found off;
    }
    # Deny access to dot-files.
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }
}

以下是您将要进行的更改的摘要。

更改根指令的值以指向网站的正确位置,例如/var/www/fork

更改server_name指令的值以指向您的域名或IP地址。

确保正确地设置了fastcgi_pass。

保存文件并退出。

激活新的叉子。通过将文件链接到启用了站点的目录来进行conf配置。

sudo ln -s /etc/nginx/sites-available/fork.conf /etc/nginx/sites-enabled/

测试Nginx配置。

sudo nginx -t

重新加载Nginx。

sudo systemctl reload nginx.service

步骤4 -下载和安装编写器

下载 Composer dependencies.

sudo apt install -y curl git unzip
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer

检查版本。

composer --version
# Composer version 1.6.5 2018-05-04 11:44:59

步骤5 -通过编写器下载和安装Fork CMS

创建一个文档根目录。

sudo mkdir -p /var/www/fork

将/var/www/fork目录的所有权更改为johndoe。

sudo chown -R johndoe:johndoe /var/www/fork

从命令行下载Fork CMS的最新稳定版本。

cd /var/www/fork
composer create-project forkcms/forkcms .

将/var/www/fork目录的所有权更改为www-data。

sudo chown -R www-data:www-data /var/www/fork

编辑app / config / parameters.yml。分区文件并设置数据库信息。

sudo vim /var/www/fork/app/config/parameters_install.yml

使用您喜欢的web浏览器,打开您的网站并遵循Fork CMS安装程序。在跟随安装程序之后,你应该有一个叉子和运行。要访问Fork管理区域,只需将/private附加到您的站点URL。

你可能感兴趣的:(debian)