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

2021年12月29日

環境
# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)

インストールの方法
1.httpd をインストールします
# yum -y install httpd
2.httpd の設定を行います
# vi /etc/httpd/conf/httpd.conf
86行目 管理者アドレス修正
ServerAdmin contact@arkgame.com

95行目 サーバー名指定
ServerName www.arkgame.com:80

151行目 
AllowOverride All

164行目 ディレクトリ名のみでアクセスできるファイル名を追記
DirectoryIndex index.html index.php

最終行  サーバーの応答ヘッダを追記
ServerTokens Prod

3.httpdを起動します
# systemctl start httpd
自動起動を有効にします

# systemctl enable httpd
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.

4.Firewallを設定します

# firewall-cmd --add-service=http --permanent
success
# firewall-cmd --reload
success

5.動作確認
クライアントPC で Web ブラウザを起動し、「http://ipアドレス」にアクセスします

CentOS 7

Posted by arkgame