MariaDBにApache httpd をインストールする

環境
Windows 10 64 bit
MariaDB 10.6.4

インストールの方法
1.Apache httpd をインストールします
# apt -y install apache2
バージョンを確認します
# apache2 -v
Server version: Apache/2.4.51 (Debian)
Server built: 2021-10-07T17:49:44

2.ServerTokens Prodの設定
ResponseHeader に含まれるServerの情報を最小限にします
# vi /etc/apache2/conf-enabled/security.conf
25行目
修正前
ServerTokens OS
修正後
ServerTokens Prod

3.ディレクトリ名のみでアクセスできるファイル名を設定します
# vi /etc/apache2/mods-enabled/dir.conf
2行目
修正前
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
修正後
DirectoryIndex index.html index.php index.htm

4.サーバー名を追記します
# vi /etc/apache2/apache2.conf
70行目 以下を追記します
ServerName www.arkgame.com

5.管理者アドレスを変更します
11行目
修正前
ServerAdmin webmaster@localhost
修正後
ServerAdmin contact@arkgame.com

6.apache2を再起動します
# systemctl restart apache2

MariaDB

Posted by arkgame