I run nginx for my web server but wanted to quickly toss up thttpd so I could do some maintainenace using either vqadmin or qmailadmin.
Those files are located at: /usr/local/apache/cgi-bin/qmailadmin and /usr/local/apache/cgi-bin/vqadmin/vqadmin.cgi.
My /etc/thttpd.conf is:
host=127.0.0.1
port=8000
user=apache
logfile=/var/log/thttpd.log
pidfile=/var/run/thttpd.pid
dir=/usr/local/apache/cgi-bin
nochroot
cgipat=**.cgi
When I use lynx to go to http://127.0.0.1:8000/cgi-bin/vqadmin/vqadmin.cgi, thttpd tosses a 404. Any idea how to get this working? Many thanks.
Since you are getting a 404 error, does not the logfile have any information on why thttpd cannot locate the cgi script?