Created
March 8, 2016 17:04
-
-
Save ohartl/ec81824f1a05b3c36e8a to your computer and use it in GitHub Desktop.
check all php fpm configs
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
#!/bin/sh | |
# for php 7.0 | |
[ -x /usr/sbin/php-fpm7.0 ] && /usr/sbin/php-fpm7.0 -t || echo "php 7.0 not found" | |
# for php 5.* | |
[ -x /usr/sbin/php5-fpm ] && /usr/sbin/php5-fpm -t || echo "php 5.* not found" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment