Last active
August 29, 2015 14:09
-
-
Save datawebbie/6077a7819d8f2245f9aa to your computer and use it in GitHub Desktop.
Mac OS X web dev setup stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Apache config reload (on Linux /etc/init.d/apache2 reload) | |
sudo apachectl -k gradeful | |
# Check Apache config error | |
apachectl configtest | |
# port check (if no nmap, brew cask install nmap) | |
nmap 127.0.0.1 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -O http://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz | |
tar -zxvf wget-1.15.tar.gz | |
cd wget-1.15 | |
./configure --with-ssl=openssl | |
make | |
sudo make install | |
# Actually a better way is: brew install wget |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment