Virtual hosts not working with install of macOS Sierra

Liz picture Liz · Sep 23, 2016 · Viewed 15.4k times · Source

I recently updated my work machine to macOS Sierra and now none of my virtual host configurations are working. I need to reconfigure all of these which is a huge pain.

I am wondering - is it normal for this to happen? Is there a way to prevent this from happening in the future when I update my operating system?

Additionally, it appears that my virtual host configuration is not working. Please see below.

I have edited /etc/apache2/extra/httpd-vhosts.conf to include:

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/Users/splashnw/Sites/tm-charts"
ServerName tm-charts.dev
ErrorLog "/private/var/log/apache2/tm-charts.dev-error_log"
CustomLog "/private/var/log/apache2/tm-charts.dev-access_log" common
</VirtualHost>

And, my /etc/hosts file has:

127.0.0.1 tm-charts.dev

When I navigate to tm-charts.dev in my browser, there is simply a message: "It works!" Not my project that I originally saw at that URL prior to installing macOS Sierra.

Can you tell me what is going wrong here? Thank you!

Answer

Chris Holcomb picture Chris Holcomb · Sep 23, 2016

When you updated to macOS it overwrote your "httpd.conf" file in the /etc/apache2/ folder. It also overwrote your "http-vhost.conf" file as well in the /etc/apache2/extra folder.

You need to see if you have a backup file in those directories to uncomment the lines or use this as an example to help restore your settings: http://digitalshore.io/local-web-development-environment-apache-macos-sierra-10-12/

Check both the "/etc/apache2" and "/etc/apache2/extra" folder for the http-conf~previous and http-vhost.conf~previous files to put your previous settings back

When you are done be sure to run sudo apachectl restart for the new settings to take effect.