Skip to content

Instantly share code, notes, and snippets.

@jsifalda
Created September 25, 2012 07:01
Show Gist options
  • Select an option

  • Save jsifalda/3780373 to your computer and use it in GitHub Desktop.

Select an option

Save jsifalda/3780373 to your computer and use it in GitHub Desktop.
OSX aliases for management nginx + php-fpm + mysql
#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