Website is not loading what is the issue server not responding

0

 See the issue in screenshot link of the website https://syed-brothers.com/

  • Hi, you must detail how you implemented your web site with AWS services if you want to obtain good support for re:Post community in return. On AWS, you can implement a web site with a whole lot of possible architectures and services. How can we know which one you chose if you don't provide all details?

  • +1 to the comment above. Having said that one issue I could see is that you either you do not have port 443 open in the security group or the underlying service is not running at all:

    telnet google.com 443
    Trying 172.217.16.238... Connected to google.com. Escape character is '^]'.

    However,

    telnet syed-brothers.com 443 Trying 3.68.9.58...

    Community would be able to help you better if you provide more implementation details here.

  • What is the actual IP of your server (does it match the IP in your DNS)... and others have said - how is it implemented.

質問済み 10ヶ月前239ビュー
1回答
0

It appears syed-brothers.com is running on an EC2 instance in eu-central-1, is that right?

Server:		127.0.0.53
Address:	127.0.0.53#53

Non-authoritative answer:
Name:	syed-brothers.com
Address: 3.68.9.58
Name:	syed-brothers.com
Address: 2a05:d014:cb0:7500:d126:3a02:e844:6e15

$ nslookup 3.68.9.58
58.9.68.3.in-addr.arpa	name = ec2-3-68-9-58.eu-central-1.compute.amazonaws.com.

Is the IP address still correct? If the EC2 instance has been stopped and started (note - this is different to being rebooted) it is likely that its IP will have changed.

Let's assume the IP is correct, the EC2 instance will need to be in a subnet that is directly reachable from the public internet, that is to say it's in a subnet that has a route directly to an Internet Gateway https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Internet_Gateway.html

The instance also needs to have a security group associated with it which allows inbound access on TCP port 443 https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html#sg-rules-web-server

The webserver needs a certificate to present to clients that connect using HTTPS. AWS doesn't have an offering which can create and manage certificates but does offer advice for webservers running on Amazon Linux 2 https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/SSL-on-amazon-linux-2.html

If all the above is in place them you should be able to connect to https://syed-brothers.com

If you still have problems after going through all of the steps above then please post an update here, with information about your setup. Please also point out any mistaken assumptions that might have been made in this answer (e.g. it's not Amazon Linux 2, and/or not on EC2, etc.).

profile picture
エキスパート
Steve_M
回答済み 10ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ