Hi, List,
I just faced an issue on migrating my web server from Apache to Nginx,
It's a SSI related problem, and I've checked all other httpd.conf directives, they all work well, but I didnt know how to convert this one:
Quote:
AddOutputFilter INCLUDES .shtml
|
I simply use these lines in Nginx, but it does not work as expected:
Quote:
location / {
ssi on;
......
}
|
Can anyone give me a hand please?