リモートサーバーのCentOSに新しいapache/mysqlインストールをセットアップしました。現在、サーバーのIPを介してサーバーにアクセスできるようにしたいだけです
IPが64.123.myip.whateverだとしましょう
これが私の /etc/httpd/conf/httpd.conf 設定です
### Section 2: 'Main' server configuration
ServerName 64.123.myip.whatever:80
### Section 3: Virtual Hosts
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/html
ServerName 64.123.myip.whatever
ErrorLog logs/error_log
CustomLog logs/access_log common
</VirtualHost>
Apache を再起動し、このサーバーにアクセスしようとすると、ブラウザにこのエラーが表示されます
Oops! Google Chrome could not connect to 64.123.myip.whatever
なぜこれが機能しないのですか?