0

After upgrading my iMac to OSX High Sierra my dev website isn't accessible even after completely reconfiguring Apache and phpMyAdmin.

This site can’t be reached wonderfest.dev refused to connect. Try:

Checking the connection Checking the proxy and the firewall ERR_CONNECTION_REFUSED

My /etc/apache2/extra/httpd-vhosts.conf file contents:

<FilesMatch ".+\.html$">
 SetHandler application/x-httpd-php
</FilesMatch>

<VirtualHost *:80>
 DocumentRoot "/Library/WebServer/Documents"
 ServerName localhost
</VirtualHost>

<VirtualHost *:80>
 DocumentRoot "/Users/Ross/Sites/wonderfest"
 ServerName wonderfest.dev
 ErrorLog "/private/var/log/apache2/wonderfest.dev-error_log"
 CustomLog "/private/var/log/apache2/wonderfest.dev.local-access_log" common

 <Directory "/Users/Ross/Sites/wonderfest">
   AllowOverride All
   Require all granted
 </Directory>
</VirtualHost>

I guess my question boils down to: why does FF work in all cases, but not Safari & Chrome? I have mySQL up-and-running, and phpMyAdmin works fine, too.

RossW
  • 215
  • 1
  • 7
  • 16
  • 1
    Possible duplicate of [How to stop Chrome from redirecting to HTTPS?](https://stackoverflow.com/questions/47735877/how-to-stop-chrome-from-redirecting-to-https) – benedikt Jan 03 '18 at 22:40
  • Thank you! Changing my TLD to ".test" worked. – RossW Jan 04 '18 at 23:41

0 Answers0