|
It is not allowed to serve static content under CGI context/directory. You have to create "static" context for static content. You can use a matching static context like:
URI: exp: ^/cgi-bin/(.*\.html)$
location: path/to/cgi-bin/$1
make sure this context has smaller sequence number than the CGI context.
good luck.
|