On OpenBSD6.

I've no idea where to start troubleshooting this one !

Nov 19 23:12:50 fw slowcgi[60158]: execve
/htdocs/my.example.com/cgi-bin/test.pl: No such file or directory
# ls /var/www/htdocs/my.example.com/cgi-bin/test.pl
/var/www/htdocs/my.example.com/cgi-bin/test.pl


# cat /etc/httpd.conf
server "my.example.com" {
        listen on 198.51.100.2 tls port 443
        log { access "example-access.log", error "example-error.log" }
        connection { max requests 500, timeout 3600 }
        root "/htdocs/my.example.com"
        tls {
                key "/etc/ssl/private/my_example_com.key",
                certificate "/etc/ssl/my_example_com.cer"
        }
        hsts {
                max-age 15768000
        }
        location "/cgi-bin/*" {
                fastcgi
        }
}

# cat /etc/rc.conf.local
httpd_flags=
slowcgi_flags=

Reply via email to