conohaのサーバ centosを借りて apache(httpd)を使えるようにする apache httpd
conohaのサーバ centosを借りて apache(httpd)を使えるようにする
1. httpd インストールする
dnf -y install httpd
2. httpd 有効にする
systemctl enable httpd
systemctl status httpd
systemctl start httpd
3. Firewalld 有効に
Firewalld を有効にしている場合は、HTTP サービスの許可が必要です。HTTP は [80/TCP] を使用します。
firewall-cmd --add-service=http
success
firewall-cmd --runtime-to-permanent
success
4. conoha のコントロール画面で ポート番号80 がつながる セキュリティグループを追加
5. httpd.conf の修正
AllowOverride All
DirectoryIndex index.html index.php
6. /var/www/html に index.html をつくる
web画面からアクセス