<Directory "/var/www/html/shell/">
AddHandler cgi-script .sh
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
Directoryは、適宜良い感じに指定する
#!/bin/sh
echo -ne "Content-Type: text/html; charset=UTF-8\r\n\r\n"
cat <<EOT
<html>
<body>
`echo hello`
</body>
</html>
EOT
#END
confファイルで指定したディレクトリに配置する。
スクリプトに実行権限付けるのを忘れずに。