Advertisement
Rallias

Untitled

Jul 25th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. case $1 in
  4.     start)
  5.         nginx
  6.         ;;
  7.     stop)
  8.         nginx -s stop
  9.         ;;
  10.     restart)
  11.         nginx -s stop
  12.         nginx
  13.         ;;
  14. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement