Hi @rowsthorn
Thanks for using Bitnami WordPress!
I have checked your site and it surely is running:
$ curl -I XXX.XXX.XXX.113
HTTP/1.1 302 Found
Date: Mon, 15 Feb 2021 12:18:16 GMT
Server: Apache
X-Frame-Options: SAMEORIGIN
Location: https://XXXXXXXces.co/
Content-Type: text/html; charset=iso-8859-1
The Apache server is hence running in your instance and performing the redirection to the domain, as specified in your VirtualHost. I think you forgot to set the ServerName
directive in your Apache configuration and that is the reason you're not getting a response when directly accessing the domain.
In the apache2/conf/httpd.conf file:
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
- ServerName localhost:80
+ ServerName YOUR-DOMAIN:80
Could you please try changing that and restarting your Apache Server?
Best regards,
Jose Antonio Carmona
Was my answer helpful? Click on 