Debian11.2にApache2 をインストールする方法
環境
# cat /etc/debian_version
11.2
Apache2のインストール手順
1.Apache2 をインストールします
# apt -y install apache2
2.Apache2 の基本設定を行います
# vi /etc/apache2/conf-enabled/security.conf
25行目
変更内容
ServerTokens Prod
ディレクトリ名のみでアクセスできるファイル名を設定します
# vi /etc/apache2/mods-enabled/dir.conf
変更内容
DirectoryIndex index.html index.htm
3.サーバー名を追記します
# vi /etc/apache2/apache2.conf
70行目
ServerName www.arkgame.com
4.管理者アドレスを変更します
11行目
ServerAdmin webmaster@arkgame.com
5.apache2を再起動します
# systemctl restart apache2