Created
September 25, 2012 07:01
-
-
Save jsifalda/3780373 to your computer and use it in GitHub Desktop.
OSX aliases for management nginx + php-fpm + mysql
This file contains hidden or 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
| #add following lines into the ~/.profile file | |
| alias svstart='sudo nginx && mysql.server start && sudo php-fpm' | |
| alias svstop='sudo nginx -s stop && mysql.server stop && sudo killall php-fpm' | |
| alias svrestart='svstop && svstart' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment