Tagged Questions
0
votes
1answer
38 views
using nginx try_files and autoindex together
I have the following server configuration:
server {
listen 80;
server_name _;
root /var/www/;
location /calendars/ {
autoindex on;
try_files $uri.ics $uri =404;
...
1
vote
1answer
243 views
nginx - How to… DirectoryIndex to a folder
I want to set a initial page inside a folder, besides the common index.htm
I want to change index.htm to /folder/file.htm
Is it possible using nginx?
In my Apache server all I have to do is config ...
0
votes
1answer
570 views
Get nginx to always load /webdir/page.php on directories if no index.html page
So i'v been trying out some of the config options in http://wiki.nginx.org/NginxHttpCoreModule with no luck so far.
What I want is, if someone goes to '10.10.10.1/test/' that it loads the file ...