I'm trying to get some SSI
calls setup on a .html page with nginx. The following works fine:
<center><!--# include file="total.txt" -->
<br /><br /><a href="donate.html">Do your part - donate!</a>
</center>
...but this one comes up as garbage (it should show a calendar, and works fine when I call the script manually in the browser);
<center><!--# include virtual="cal.cgi" --></center>
I have SSI enabled in the location /
block:
location / {
ssi on;
# all the other stuff
}
What am I doing wrong?