Vanillaは、PHPで記述された無料のオープンソースディスカッションフォーラムです。 Vanilla Forumソフトウェアは、GNUGPL2ライセンスの下で配布されています。そのソースコードはGithubから入手できます。豊富なアドオンシステムがあり、Vanillaフォーラムにカスタム機能を追加するために利用できます。 Vanilla Forumのコンテンツは、Markdown言語を使用して作成できます。このチュートリアルでは、ウェブサーバーとしてNginx、データベースサーバーとしてMariaDBを使用して、Debian9にVanillaForumをインストールする方法を示します。オプションで、acme.shクライアントとLet'sEncrypt認証局を使用してトランスポートレイヤーを保護できます。 SSLサポート。
Vanillaには、PHP、MySQL、およびWebサーバーソフトウェア(ApacheやNginxなど)を備えたサーバーが必要です。ドメインを所有している必要があります。運用サーバーにインストールする場合は、DNSを使用してサーバーにドメインを構成済みですが、そうでない場合は、ドメインは必要ありません。
バニラフォーラム最小 要件は次のとおりです。
- PHPバージョン7.0以降。
- PHP拡張機能mbstring、cURL、GD、PDO、MySQLi、OpenSSL。
- MySQLバージョン5.0以降(またはPercona / MariaDBと同等のもの)。
- Webサーバーソフトウェア(Nginx、Apache ...)。
- MySQLの厳密モードが無効になっています。
バニラフォーラムは強く推奨 :
- PHPバージョン7.2以降。
- PHP拡張機能mbstring、cURL、GD、PDO、MySQLi、OpenSSL。
- MySQLバージョン5.7以降(またはPercona / MariaDBと同等のもの)。
- Webサーバーソフトウェア(Nginx、Apache ...)。
- SSL暗号化。
注 : PHP 7.0はサポートが終了し、セキュリティパッチを受け取らないため、新しいバージョンのPHPを使用することを強くお勧めします。 バニラによるPHP7.0のサポートはまもなく終了します!
前提条件
- Debian9を実行しているオペレーティングシステム。
- sudo権限を持つroot以外のユーザー。
Debianバージョンを確認してください:
lsb_release -ds
# Debian GNU/Linux 9.7 (stretch)
タイムゾーンを設定します:
sudo dpkg-reconfigure tzdata
オペレーティングシステムパッケージ(ソフトウェア)を更新します。これは、オペレーティングシステムのデフォルトのソフトウェアパッケージの最新の更新とセキュリティ修正を確実に行うための重要な最初のステップです。
sudo apt update && sudo apt upgrade -y
Debianオペレーティングシステムの基本的な管理に必要ないくつかの重要なパッケージをインストールします。
sudo apt install -y curl wget vim git unzip socat bash-completion apt-transport-https lsb-release ca-certificates dirmngr software-properties-common
新しいリポジトリをシステムに追加して、新しい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 && sudo apt upgrade -y
PHPと必要なPHP拡張機能をインストールします:
sudo apt install -y php7.2 php7.2-cli php7.2-fpm php7.2-common php7.2-mbstring php7.2-curl php7.2-gd php7.2-mysql php7.2-json
モジュールにコンパイルされたPHPを表示するには、次のコマンドを実行できます。
php -m
ctype
curl
exif
fileinfo
. . .
. . .
PHPのバージョンを確認してください:
php --version
# PHP 7.2.14-1+0~20190113100742.14+stretch~1.gbpd83c69 (cli) (built: Jan 13 2019 10:07:43) ( NTS )
# Copyright (c) 1997-2018 The PHP Group
# Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
# with Zend OPcache v7.2.14-1+0~20190113100742.14+stretch~1.gbpd83c69, Copyright (c) 1999-2018, by Zend Technologies
PHP-FPMサービスは、Debian 9システムで再起動すると自動的に開始されて有効になるため、手動で開始して有効にする必要はありません。次のステップであるデータベースのインストールとセットアップに進むことができます。
Vanilla Forumは、MySQL、MariaDB、およびPerconaデータベースをサポートしています。このチュートリアルでは、MariaDBをデータベースサーバーとして使用します。
Debianの公式MariaDBリポジトリからMariaDBバージョン10.2をインストールします:
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8
sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] https://mirrors.nxthost.com/mariadb/repo/10.2/debian stretch main'
sudo apt update
sudo apt install -y mariadb-server
MariaDBのバージョンを確認してください:
mysql --version
mysql_secure installation
を実行します MariaDBのセキュリティを向上させ、MariaDB root
のパスワードを設定するスクリプト ユーザー:
sudo mysql_secure_installation
それぞれの質問に答えてください:
Would you like to setup VALIDATE PASSWORD plugin? N
New password: your_secure_password
Re-enter new password: your_secure_password
Remove anonymous users? [Y/n] Y
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
rootユーザーとしてMariaDBシェルに接続します:
sudo mysql -u root -p
# Enter password
空のMariaDBデータベースとVanillaForumのユーザーを作成し、資格情報を覚えておいてください:
mariadb> CREATE DATABASE dbname;
mariadb> GRANT ALL ON dbname.* TO 'username' IDENTIFIED BY 'mypassword';
mariadb> FLUSH PRIVILEGES;
mypasswordという単語を選択した安全なパスワードに置き換えます。 MariaDBを終了します:
mariadb> exit
dbname
を置き換えます 、username
およびpassword
自分の名前で。
ステップ3-acme.shクライアントをインストールし、Let's Encrypt証明書を取得します(オプション)
HTTPSを使用してWebサイトを保護する必要はありませんが、サイトのトラフィックを保護することをお勧めします。 Let's EncryptからTLS証明書を取得するには、acme.shクライアントを使用します。 Acme.shは、依存関係がゼロのLet'sEncryptからTLS証明書を取得するための純粋なUnixシェルソフトウェアです。
acme.shをダウンロードしてインストールします:
sudo su - root
git clone https://github.com/Neilpang/acme.sh.git
cd acme.sh
./acme.sh --install --accountemail [email protected]
source ~/.bashrc
cd ~
acme.shのバージョンを確認してください:
acme.sh --version
# v2.8.0
RSAを取得する およびECC/ ECCSA ドメイン/ホスト名の証明書:
# RSA 2048
acme.sh --issue --standalone -d example.com --keylength 2048
# ECDSA
acme.sh --issue --standalone -d example.com --keylength ec-256
テスト用の偽の証明書が必要な場合は、--staging
を追加できます。 上記のコマンドにフラグを立てます。
上記のコマンドを実行した後、証明書 およびキー になります:
- RSAの場合 :
/home/username/example.com
ディレクトリ。 - ECC/ECDSAの場合 :
/home/username/example.com_ecc
ディレクトリ。
発行された証明書を一覧表示するには、次のコマンドを実行できます:
acme.sh --list
証明書を保存するディレクトリを作成します。ディレクトリ/etc/letsencrypt.
を使用します
mkdir -p /etc/letsecnrypt/example.com
sudo mkdir -p /etc/letsencrypt/example.com_ecc
証明書を/etc/letsencryptディレクトリにインストール/コピーします。
# RSA
acme.sh --install-cert -d example.com \
--cert-file /etc/letsencrypt/example.com/cert.pem \
--key-file /etc/letsencrypt/example.com/private.key \
--fullchain-file /etc/letsencrypt/example.com/fullchain.pem \
--reloadcmd "sudo systemctl reload nginx.service"
# ECC/ECDSA
acme.sh --install-cert -d example.com --ecc \
--cert-file /etc/letsencrypt/example.com_ecc/cert.pem \
--key-file /etc/letsencrypt/example.com_ecc/private.key \
--fullchain-file /etc/letsencrypt/example.com_ecc/fullchain.pem \
--reloadcmd "sudo systemctl reload nginx.service"
すべての証明書は60日ごとに自動的に更新されます。
証明書を取得したら、rootユーザーを終了し、通常のsudoユーザーに戻ります。
exit
ステップ4-NGINXをインストールし、Vanillaフォーラム用にNGINXを構成します
バニラフォーラムは、多くの一般的なウェブサーバーソフトウェアで正常に機能します。このチュートリアルでは、Nginxを選択しました。 NginxよりもApacheWebサーバーを使用する場合は、https://docs.vanillaforums.com/developer/backend/server-apache/にアクセスして詳細を確認してください。
DebianリポジトリからNginxをダウンロードしてインストールします:
sudo apt install -y nginx
Nginxのバージョンを確認してください:
sudo nginx -v
次のコマンドを実行して、Vanilla用にNginxを構成します:
sudo vim /etc/nginx/sites-available/vanilla.conf
そして、ファイルに次の構成を入力します。
server {
listen 80;
listen 443 ssl http2;
server_name forum.example.com;
root /var/www/vanilla;
index index.php;
# RSA
ssl_certificate /etc/letsencrypt/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/example.com/private.key;
# ECC
ssl_certificate /etc/letsencrypt/example.com_ecc/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/example.com_ecc/private.key;
location ~* /\.git { deny all; return 403; }
location /build/ { deny all; return 403; }
location /cache/ { deny all; return 403; }
location /cgi-bin/ { deny all; return 403; }
location /uploads/import/ { deny all; return 403; }
location /conf/ { deny all; return 403; }
location /tests/ { deny all; return 403; }
location /vendor/ { deny all; return 403; }
location ~* ^/index\.php(/|$) {
include snippets/fastcgi-php.conf;
fastcgi_param SCRIPT_NAME /index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root/index.php;
fastcgi_param X_REWRITE 1;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
location ~* \.php(/|$) {
rewrite ^ /index.php$uri last;
}
location / {
try_files $uri $uri/ @vanilla;
}
location @vanilla {
rewrite ^ /index.php$uri last;
}
}
注 : Vanillaの完全で本番環境に対応したNginx構成については、https://docs.vanillaforums.com/developer/backend/server-nginx/にアクセスしてください。
新しいvanilla.conf
を有効にします ファイルをsites-enabled
にリンクして構成する ディレクトリ。
sudo ln -s /etc/nginx/sites-available/vanilla.conf /etc/nginx/sites-enabled
構文エラーがないかNginx構成を確認してください:
sudo nginx -t
Nginxサービスをリロードします:
sudo systemctl reload nginx.service
Vanilla Forumが存在するドキュメントルートディレクトリを作成します:
sudo mkdir -p /var/www/vanilla
/var/www/vanilla
の所有権を変更します {your_user}. Replace the string {y
our_user} with the name of the Linux user that you are currently logged in, so when your username is e.g. johndoe, then replace '{y
our_user}' with 'johndoe'.
sudo chown -R {your_user}:{your_user} /var/www/vanilla
注 : {jour_user}
を置き換えます 最初に作成したroot以外のユーザーのユーザー名を使用します。
ドキュメントのルートディレクトリに移動します:
cd /var/www/vanilla
バニラフォーラムのzipアーカイブをダウンロードします:
wget https://open.vanillaforums.com/get/vanilla-core-2.8.1.zip
Vanilla zipアーカイブを抽出して削除します:
unzip vanilla-core-2.8.1.zip
rm vanilla-core-2.8.1.zip
mv vanilla-2.8.1/* . && mv vanilla-2.8.1/.* .
適切な所有権を提供します:
sudo chown -R www-data:www-data /var/www/vanilla
WebブラウザでVanillaをアップロードしたフォルダに移動し、画面の指示に従います。
Webブラウザーでサイトを開いた後、次のページにリダイレクトされます。
必要な情報を入力し、[続行]→[]をクリックします ボタンをクリックして、インストールとセットアップを完了します。その後、VanillaForumの管理インターフェースが表示されます。
- https://open.vanillaforums.com/
- https://github.com/vanilla/vanilla