brew install httpd
http://localhost:8080
Config Apache
แก้ไข /usr/local/etc/httpd/httpd.conf ตามที่เราต้องการ
User [User]
Group staff
DocumentRoot "/Users/[User]/www"
<Directory "/Users/[User]/www">
Optional
<Directory />
AllowOverride all
...
</Directory>
httpd service
apachectl start
apachectl restart
apachectl stop
----
brew services start httpd
brew services restart httpd
brew services stop httpd