お知らせ!! 「jpcmoh.myds.me」から「mohlog.com」へ変更しました
PR

Raspberry PiでWEBサーバー – リバースプロキシ経由

アイキャッチ Raspi Web NASでブログ
記事内に広告が含まれています。
iNFO

長文になります。PC用サイト表示では、右サイドバーにも目次を用意していますので、そちらを併用してご覧ください。

スポンサーリンク

はじめに

Raspberry Pi(以下ラズパイと記載)を使ったWEBサーバーの構築方法です。
ただし、ラズパイのみの単独ではなく、SynologyのNASでリバースプロキシを構成して、別のドメイン(サブドメイン)をラズパイのWEBサーバーで動かすといった、あまり紹介例のないやり方です。

「Synology NASのエントリーモデルでWordPressを始めたものの、Google AdSense で収益化を始めたら、NASが非力なために表示時間が極端に長くなってしまった。
なんとかしたいけど、高スペックなNASは高価で手が出せないので、WEBサーバー部分はラズパイiで運用する。」
といったシチュエーションを想定しています。

リバースプロキシ+WEBサーバー
INFO

これを応用して、2025/3/30から、もーろぐ2(https://mini.mohlog.com)を運用開始しました。ただし、ラズパイではなく、PC(CPU Intel N100)+Ubuntuです。

スポンサーリンク

使用した機器

  • ラズパイ Raspberry Pi 4B メモリ4GBモデル
  • microSDカード 64GB
  • 電源 ラズパイ用 ACアダプタ

ラズパイは手持ちのものを使っています。Raspberry Pi 5でもやり方は同じです。
NAS、ルータ等の紹介は割愛させていただきます。

スポンサーリンク

ラズパイ側 その1

microSDカードへのOSインストール

今回使用したOSは、Raspberry Pi OS Lite (64bit)です。

Raspberry Pi OS Lite (64bit)

今回の記事では、以下のようにしています。適宜変更してください。

Raspberry PI OS設定

起動、アップデート

microSDカードにOSがインストールできたら、起動して、アップデートしておきます。

コマンド:アップデート

sudo apt update
sudo apt upgrade

Apache2のインストールと設定

Apache2のインストール

コマンド:Apache2インストール

sudo apt install apache2

インストール後、Google ChromeなどのWebブラウザから、http://192.168.0.4(ラズパイのIPアドレス)にアクセスし、以下画面がでればApache2が稼働をはじめています。

Apache2初期画面

security.conf 設定変更

コマンド:security.conf 設定変更

sudo nano /etc/apache2/conf-enabled/security.conf

サーバーのOSやApacheのバージョン、モジュール情報など、余計なものを表示しないように設定します。
# 12行目 : 変更
変更前:ServerTokens OS
変更後:ServerTokens Prod

dir.conf 設定変更

コマンド:security.conf 設定変更

sudo nano /etc/apache2/mods-enabled/dir.conf

# index.phpを先頭に移動して、優先順位を1番に変更。
変更前:DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
変更後:DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm

バーチャルホスト設定

同じサーバーで、複数のドメイン(サブドメインも)を運用できるようにします。
デフォルト設定をコピーして編集します。
httpとhttps用の2つを作成します。

コマンド:デフォルト設定(http用)をコピー

sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/testmohlog.conf

コマンド:設定(http用)を編集

sudo nano /etc/apache2/sites-available/testmohlog.conf

# 赤字部分を追加、変更

testmohlog.conf
<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com
        ServerName test.mohlog.com #追加
        ServerAdmin webmaster@localhost
        #DocumentRoot /var/www/html #コメントアウト
        DocumentRoot /var/www/testmohlog #追加
        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        #ErrorLog ${APACHE_LOG_DIR}/error.log #コメントアウト
        #CustomLog ${APACHE_LOG_DIR}/access.log combined #コメントアウト
        ErrorLog ${APACHE_LOG_DIR}/error_testmohlog.log #追加
        CustomLog ${APACHE_LOG_DIR}/access_testmohlog.log combined #追加

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
</VirtualHost>
コマンド:デフォルト設定(https用)をコピー

sudo cp /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-available/testmohlog-ssl.conf

コマンド:設定(https用)を編集

sudo nano /etc/apache2/sites-available/testmohlog-ssl.conf

# 赤字部分を追加、変更

testmohlog.conf
<VirtualHost *:443>
        ServerAdmin webmaster@localhost
        ServerName test.mohlog.com #追加
        #DocumentRoot /var/www/html #コメントアウト
        DocumentRoot /var/www/testmohlog #追加

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        #ErrorLog ${APACHE_LOG_DIR}/error.log #コメントアウト
        #CustomLog ${APACHE_LOG_DIR}/access.log combined #コメントアウト
        ErrorLog ${APACHE_LOG_DIR}/error_testmohlog.log #追加
        CustomLog ${APACHE_LOG_DIR}/access_testmohlog.log combined #追加

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf

        #   SSL Engine Switch:
        #   Enable/Disable SSL for this virtual host.
        SSLEngine on

        #   A self-signed (snakeoil) certificate can be created by installing
        #   the ssl-cert package. See
        #   /usr/share/doc/apache2/README.Debian.gz for more info.
        #   If both key and certificate are stored in the same file, only the
        #   SSLCertificateFile directive is needed.
        SSLCertificateFile      /etc/ssl/certs/ssl-cert-snakeoil.pem
        SSLCertificateKeyFile   /etc/ssl/private/ssl-cert-snakeoil.key
・・・

バーチャルホストの有効化

コマンド:バーチャルホスト(http)の有効化

sudo a2ensite testmohlog

結果
mohlog@mohpi:~ $ sudo a2ensite testmohlog
Enabling site testmohlog.
To activate the new configuration, you need to run:
  systemctl reload apache2
コマンド:バーチャルホスト(https)の有効化

sudo a2ensite testmohlog-ssl

結果
mohlog@mohpi:~ $ sudo a2ensite testmohlog-ssl
Enabling site testmohlog-ssl.
To activate the new configuration, you need to run:
  systemctl reload apache2

sslの有効化

httpsでアクセスできるように、sslを有効化します。通常WEBサーバーで証明書を取得/設定が必要なのですが、今回はSynology NASのリバースプロキシを使うため、証明書の取得/設定もSynology NAS側で行います。(設定方法は後述)
この方が、証明書の更新・管理が圧倒的に楽です。

コマンド:sslの有効化

sudo a2enmod ssl

結果
mohlog@mohpi:~ $ sudo a2enmod ssl
Considering dependency setenvif for ssl:
Module setenvif already enabled
Considering dependency mime for ssl:
Module mime already enabled
Considering dependency socache_shmcb for ssl:
Enabling module socache_shmcb.
Enabling module ssl.
See /usr/share/doc/apache2/README.Debian.gz on how to configure SSL and create self-signed certificates.
To activate the new configuration, you need to run:
  systemctl restart apache2

Apache2の再起動(ここまで設定した内容の反映)

コマンド:sslの有効化

sudo systemctl restart apache2

ここまで設定したら、Synology NASのリバースプロキシの設定にうつります。

スポンサーリンク

Synology NASの設定

リバースプロキシ設定

DSM コントロールパネル

Synology NASのDSMにアクセスし、「コントロールパネル」 を開きます。

DSM ログインポータル

ログインポータル」を開きます。

ログインポータル 詳細設定 リバース プロキシ

詳細設定」タブを選択して、
リバース プロキシ」をクリックします。

リバースプロキシ 設定

作成」をクリック

リバースプロキシ 全般設定

全般」タブで、設定を入力します。
「プロキシ名を反転:」は、言葉がおかしいですが、この設定の名称です。
Targetの「ホスト名:」と、送り先の「ホスト名:」を、ご使用の環境にあわせて変更し、他は画像と同じ設定で良いです。
入力したら、「保存」をクリックして、保存します。

リバースプロキシ設定完了

設定がリストに表示されれば、OKです。

証明書

サイトにhttpsで接続するために、証明書の発行と設定が必要です。WEBサーバーにしたラズパイ側で設定する方法もありますが、今回は、更新・管理がらくな、SynologyNAS側で設定します。

コントロールパネル セキュリティ

コントロールパネルから、「セキュリティ」を開きます。

セキュリティ 証明書

追加」をクリック

あたらしい証明書

新しい証明書を追加してください」を選択して、次へ。

説明と方法

「説明:」には適当な名称を入れます。
「Let's Encryptからの証明書をお受け取りください」を選択し、次へ。

証明書の情報

「ドメイン名:」欄には、運用するサイトのドメイン名(例:test.mohlog.com)を、
「電子メール:」に、Synology NASに設定してあるメールアドレスから選択
「完了」をクリックします。

証明書が取得できた

証明書の取得には、数秒から数分かかります。
成功すると、リストに証明書が追加表示されます。

証明書の割り当て

このあと、運用するサイトにこの証明書を適用します。
設定」をクリックして、

証明書をサブドメインに割り当て

運用するドメイン名を見つけて、リストから取得した証明書を選択。
「OK」でをクリックして完了です。

これで、Synology NAS側での設定は終了です。

INFO

証明書は90日後に期限となり、更新が必要ですが、Synology NASが自動でやってくれます。
おおよそ期限1か月を切ったころに更新されます。

スポンサーリンク

ラズパイ側 その2

Apache2の動作テスト

Apache2のバーチャルホスト設定がうまくできているか、確認します。
確認用のページを作成して、それが表示されるかどうかで確認とします。

testmohlog用のディレクトリを作って、デフォルトのindex.htmlをコピー

コマンド:testmohlog用のディレクトリを作って、デフォルトのindex.htmlをコピー

sudo mkdir /var/www/testmohlog/
sudo cp /var/www/html/index.html /var/www/testmohlog/index.html
sudo chown -R www-data:www-data /var/www/testmohlog/

コピーしたindex.htmlを少し変更

デフォルトとの区別がつくように、コピーしたindex.htmlを少し変更します。

コマンド:indexhtml編集

sudo nano /var/www/testmohlog/index.html

今回は、
変更前:Apache2 Debian Default Page
変更後:Apache2 testmohlog Page
としました。タイトル部分と本文部分の2ヶ所変更してます。

うまくバーチャルホストの設定ができていれば、ブラウザで、https://test.mohlog.com へアクセスすると、 /var/www/testmohlog/にある、変更後のindex.htmlが表示されます。

テストページ

うまくバーチャルホストの設定ができていない場合は、/var/www/http/にある、デフォルトのindex.htmlが表示されます。

テストNGページ

rewriteモジュールの追加

これを忘れると、WordPressでパーマリンク構造の変更ができないなどの不具合がでます。
「更新に失敗しました。返答が正しいJSONレスポンスではありません。」とエラーが出たりします。

JSONエラー
コマンド:rewriteモジュール追加

sudo a2enmod rewrite

結果
mohlog@mohpi: $~ sudo a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
  systemctl restart apache2

あわせて、apache2.confを変更します。

コマンド:apache2.conf編集

sudo nano /etc/apache2/apache2.conf

<Directory /var/www/>にある赤字部分を変更します。
変更前:AllowOverride None
変更後:AllowOverride All

apache2.conf
・・・
<Directory /var/www/>
Options Indexes FollowSymLinks
	AllowOverride All
Require all granted
</Diectory>
・・・

Apache2を再起動します。

コマンド:apache2 再起動

sudo systemctl restart apache2

PHP関連のインストール

PHPのインストール

コマンド:PHP インストール

sudo apt install php php-mbstring php-pear

結果
mohlog@mohpi:~ $ sudo apt install php php-mbstring php-pear
mohlog@mohpi:~ $ sudo php -v #バージョンの確認
PHP 8.2.26 (cli) (built: Nov 25 2024 17:21:51) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.26, Copyright (c) Zend Technologies
    with Zend OPcache v8.2.26, Copyright (c), by Zend Technologies

PHP-FPM のインストールと、Apache2で有効化

NOTE

今回PHPのバージョンが8.2.*だったため、php8.2-fpmになります。
PHPのバージョンにより読み替えてください。(Ubuntu Server 24.04.2LTSだと8.3だったりする)

コマンド:PHP インストール

sudo apt install php8.2-fpm
sudo a2enmod proxy_fcgi setenvif
sudo a2enconf php8.2-fpm
sudo systemctl restart php8.2-fpm apache2

結果
mohlog@mohpi:~ $ sudo apt install php8.2-fpm
mohlog@mohpi:~ $ sudo a2enmod proxy_fcgi setenvif
Considering dependency proxy for proxy_fcgi:
Enabling module proxy.
Enabling module proxy_fcgi.
Module setenvif already enabled
To activate the new configuration, you need to run:
  systemctl restart apache2
mohlog@mohpi:~ $ sudo a2enconf php8.2-fpm
Enabling conf php8.2-fpm.
To activate the new configuration, you need to run:
  systemctl reload apache2
mohlog@mohpi:~ $ sudo systemctl restart php8.2-fpm apache2

確認用のファイルを作成します。

コマンド:確認用ファイル作成

sudo nano /var/www/testmohlog/info.php

内容はこれだけ

info.php
<?php phpinfo(); ?>

https://test.mohlog.com/info.phpにWebブラウザでアクセスし、Server APIの欄に、「FPM/FastCGI」と表示されればOKです。

php FPM/FastCGI

そのほかのPHPモジュールのインストール

以下をインストールします。

  • php-curl
  • php-imagick
  • php-zip
  • php-intl
  • php-common
  • php-gd
  • php-mysql
  • php-enchant hunspell
コマンド:その他PHPモジュール インストール

sudo apt install php-curl php-imagick php-zip php-intl php-common php-gd php-mysql php-enchant hunspell

WordPress用PHP設定

WordPress用にPHPを設定します。

コマンド:www.conf編集

sudo nano /etc/php/8.2/fpm/pool.d/www.conf

最終行に赤字を追加します。ラズパイはメモリ4GB積んで余裕があるので、memory_limitを512MBbにしてます。

www.conf
・・・
;; 最終行に追記 ラズパイのメモリサイズや WordPress の使用状況に応じて調整
php_value[max_execution_time] = 600
php_value[memory_limit] = 512M
php_value[post_max_size] = 512M
php_value[upload_max_filesize] = 256M
php_value[max_input_time] = 600
php_value[max_input_vars] = 2000
php_value[date.timezone] = Asia/Tokyo

php-fpmを再読み込みします。

コマンド:php-fpmを再読み込み

sudo systemctl reload php8.2-fpm

MariaDBのインストールと初期設定

MariaDBのインストール

コマンド:MariaDBのインストール

sudo apt install mariadb-server

念のため、扱う文字コードの設定がどうなっているかを確認しておきます。
絵文字等 4バイト長の文字を扱う場合は 「utf8mb4」とする必要があります。

コマンド:50-server.cnfの確認

sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf

95,96行めあたりです。青字といっしょなら変更不要。

50-server.cnf
・・・
character-set-server  = utf8mb4
collation-server      = utf8mb4_general_ci

設定を変更した場合は、MariaDBの再起動をします。

コマンド:MariaDBの再起動

sudo systemctl restart mariadb

MariaDBの初期設定

コマンドに「secure_insutallation」とあるので、初期設定というのかインストールのようなものですね。

コマンド:MariaDBの初期設定

sudo mysql_secure_installation

途中質問があります。赤字のように入力してます。

結果
mohlog@mohpi:~ $ sudo mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
haven't set the root password yet, you should just press enter here.

Enter current password for root (enter for none): [ENTER]
OK, successfully used password, moving on...

Setting the root password or using the unix_socket ensures that nobody
can log into the MariaDB root user without the proper authorisation.

You already have your root account protected, so you can safely answer 'n'.

Switch to unix_socket authentication [Y/n] n
 ... skipping.

You already have your root account protected, so you can safely answer 'n'.
Change the root password? [Y/n] n
 ... skipping.

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

WordPress用データベースの作成

今回は、

  • データベース名:db_testmohlog
  • ユーザー名:mohlog
  • パスワード:abcd1234

としています。

コマンド:データベース起動

sudo mysql

結果
mohlog@mohpi:~ $ sudo mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 37
Server version: 10.11.6-MariaDB-0+deb12u1 Debian 12

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database db_testmohlog;
Query OK, 1 row affected (0.001 sec)

MariaDB [(none)]> grant all privileges on db_testmohlog.* to mohlog identified by 'abcd1234';
Query OK, 0 rows affected (0.002 sec)

MariaDB [(none)]>  exit

WordPressインストール

WordPressダウンロード

最新版をダウンロードします。

コマンド:データベース起動

wget https://wordpress.org/latest.tar.gz

結果
mohlog@mohpi:~ $ wget https://wordpress.org/latest.tar.gz
--2025-03-DD 20:40:56--  https://wordpress.org/latest.tar.gz
Resolving wordpress.org (wordpress.org)... 198.143.164.252
Connecting to wordpress.org (wordpress.org)|198.143.164.252|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 26780969 (26M) [application/octet-stream]
Saving to: ‘latest.tar.gz’

latest.tar.gz                 100%[==============================================>]  25.54M  1.98MB/s    in 17s     

2025-03-DD 20:41:14 (1.53 MB/s) - ‘latest.tar.gz’ saved [26780969/26780969]

解凍、アクセス権限の変更

コマンド:解凍、アクセス権限の変更

sudo tar zxvf latest.tar.gz -C /var/www/
sudo chown -R www-data:www-data /var/www/wordpress

1行めで、/var/wwwに解凍。/var/www/wordpress ができるので、
2行めで、アクセス権限を www-data:www-data に変更します。

ディレクトリ(フォルダ)ごと差し替え

いま、test.mohlog.com用のサイトデータは、/var/www/testmohlog に入ってますので、これをディレクトリ(フォルダ)ごと差し替えます。
/var/www/testmohlog を名称変更して、/var/www/_testmohlog とし、
/var/www/wordpress を名称変更して、/var/www/testmohlog とします。

コマンド:解凍、アクセス権限の変更

sudo mv /var/www/testmohlog /var/www/_testmohlog
sudo mv /var/www/wordpress /var/www/testmohlog

スポンサーリンク

WordPress開始

https:test.mohlog.comにアクセスすると、以下のインストール画面が表示され、表示される手順通りにWordPressの設定を行います。

WordPress初期画面

最後に、テーマファイルやプラグインなどを、ftpソフト等を使用しなくとも直接WebブラウザからWordPressに読み込ませられるように、wp-config.phpを編集します。

コマンド:wp-config.php の編集

sudo nano /var/www/testmohlog/wp-config.php

赤字を追加します。記載場所に指定があるので、そこに記載します。
86〜90行めあたりになります。

wp-config.php
・・・
define( 'WP_DEBUG', false );

/* カスタム値は、この行と「編集が必要なのはここまでです」の行の間に追加してください。 */
define( 'FS_METHOD', 'direct' );


/* 編集が必要なのはここまでです ! WordPress でのパブリッシングをお楽しみください。 */
・・・
スポンサーリンク

おわりに

ラズパイやPCを使ってLinuxでWordPressを運用する記事は、数多くあるのですが、今回のSynologyNAS + ラズパイ という運用方法はなく、いろいろと試行錯誤してやっと完成にこぎつけました。
かなりの長文になりましたが、分割して記事を記載すると分かりにくくなるのを防ぐためです。ご容赦ください。

ただ、バックアップやシステムの冗長、異常がないかの確認をどうするかの対策が必要です。このあたりは、SynoogyNAS単体での運用なら楽ですね。


created by Rinker
Raspberry Pi
¥13,940 (2025/04/03 09:04:17時点 Amazon調べ-詳細)

コメント

タイトルとURLをコピーしました