1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Webサーバ構築メモ

Last updated at Posted at 2019-02-21

Apacheの導入

# 最初に更新
sudo yum update -y

# Apacheがインストールされているか確認
sudo yum info httpd

# ない場合はApacheをインストール
sudo yum -y install httpd

# Apacheをスタート
sudo service httpd start

# ステータスを確認
sudo systemctl status httpd.service

これでパブリックIPにアクセスして問題なければテストページが表示。
接続されない場合はセキュリティグループのポートを確認する。

AWSのLinuxでは/etc/httpd/conf/に設定ファイル(httpd.conf)がある。
基本は/var/www/html内にファイルを入れればOK。

SSL化

  • AWS Certificate Managerを使用する
    • Route53でドメイン関連付けをしている場合はDNSで自動設定してくれる
  • EC2インスタンスはロードバランサーを作成しておく

トラブルシューティング

  • httpで接続できるが、httpsで接続できない場合
    • Route53のAレコードをELBに変更する
    • Alias yesで該当のELBを選択
  • 503エラーになる場合
    • ELBのターゲットグループでターゲットが適切に選択されているか確認
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?