Skip to content
Snippets Groups Projects
test_nginx_conf_valid.sh 126 B
Newer Older
# Check that the Nginx configuration files are valid.
set -e

if ( which nginx >/dev/null ); then
    nginx -t
fi