summaryrefslogtreecommitdiffstats
path: root/httpd/httpd_php.sh
blob: 12a3cb033fe2dc1106a707815c1669a374229095 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# A small Apache HTTPd test suite
# Author: Athmane Madjoudj <athmane@fedoraproject.org>

echo "<?php echo phpinfo(); ?>" > /var/www/html/test.php

echo "Running $0 - httpd handle PHP test"

curl -s http://localhost/test.php | grep 'PHP Version' > /dev/null 2>&1