I'm using the nginx webserver on Linux for domain "example.com". I forward everything via fastcgi to fastcgi-mono-server4.
Now, everything works fine, I just want to set several index pages, e.g. something like:
fastcgi_index Default.aspx default.aspx index.html index.htm;
But somehow, it doesn't accept multiple values. How can I do this ? Is it possible somehow ? I also tried comma and semicolon as separator, but nothing works...
Here the location entry of the virtual host entry in "sites-available":
location / {
root /home/webpages/www/example.com;
index index.html index.htm default.aspx Default.aspx;
fastcgi_index Default.aspx;
fastcgi_pass 127.0.0.1:9000;
include /etc/nginx/fastcgi_params;
}