I am trying to server static sitemap file and my nginx configuration is:-
location /sitemap.xml/ {
autoindex on;
root /var/www/html;
}
so now when i try to do,
www.mysite.com/sitemap.xml
i get 404 not found error.
so when i check the nginx error log file i see nginx is trying to search sitemap file on
/var/www/html/sitemap.xml/index.html
i don't understand why it is searching index.html file instead of sitemap.xml.