実現したい事
現在ec2インスタンスのipアドレス+nginxのポート番号で、
ec2インスタンスにデプロイしたプロジェクトにアクセス出来る様になっております。
【例:http://54.249.247.100:8000】←こちらでアクセスしています。
これをhttp://54.249.247.100のみで上記と同じ様に
アクセスする方法をご教示していただけませんでしょうか?
なぜ実現させていのかという理由
awsのRoute53で、取得したドメインネームでサイトにアクセス出来る様にしたいからです。
すでに取得したドメインネームとec2インスタンスの関連付けには成功しているのですが、
nginxのポートがないため、プロジェクトにアクセス出来ない状況となっております。
現在のNGINXの設定
現在は8000ポートを通してプロジェクトにアクセスが出来ております。
conf
1#nginx.conf 2 3upstream django { 4 ip_hash; 5 # Pythonの公開ポートを設定 6 server python:8001; 7} 8 9server { 10 # Nginxの公開ポートを設定します。 11 listen 8000; 12 server_name 127.0.0.1; 13 charset utf-8; 14 15 location /static { 16 alias /static; 17 } 18 19 # max upload size 20 client_max_body_size 75M; # adjust to taste 21 22 # 全てのリクエストをdjangoに送るための設定 23 location / { 24 uwsgi_pass django; 25 include /etc/nginx/uwsgi_params; 26 } 27} 28 29# レスポンスヘッダにバージョン番号を出さないための設定(セキュリティのため) 30server_tokens off; 31
docker
1#docker-compose 2 3version : "3.4" 4services: 5 db: 6 image: mariadb:10.4.8 7 restart: always 8 command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci 9 ports: 10 - 3308:3306 11 volumes: 12 - ./docker/mysql/conf.d:/etc/mysql/conf.d 13 - ./log/mysql:/var/log/mysql 14 environment: 15 - MYSQL_ROOT_PASSWORD=hoge 16 - MYSQL_DATABASE=hoge 17 - MYSQL_USER=hoge 18 - MYSQL_PASSWORD=hoge 19 20 python: 21 build: ./python 22 command: uwsgi --socket :8001 --module mysite.wsgi --logto /tmp/uwsgi.log 23 volumes: 24 - ./src:/code 25 - ./static:/static 26 expose: 27 - "8001" 28 depends_on: 29 - db 30 31 nginx: 32 image: nginx:1.19 33 ports: 34 - "8000:8000" 35 volumes: 36 - ./log/nginx/:/var/log/nginx 37 - ./nginx/conf:/etc/nginx/conf.d 38 - ./nginx/uwsgi_params:/etc/nginx/uwsgi_params 39 - ./static:/static 40 depends_on: 41 - python 42 43volumes: 44 django.db.volume: 45 name: django.db.volume
試した事
nginx.confのserver_name 127.0.0.1;をec2のipアドレスに変更してみましたがだめでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。