Hi,
I want my basex webapp's root url, ie domain.com/ to default not to index.html, but to index.xquery or any kind of "x" :-)
Currently running with nginx
# pass requests for content to basex location / { index index.xqy index.xquery index.xml; proxy_pass http://127.0.0.1:8984; }
But only index.html behaves this way. (all others show directory contents)
I think maybe this is set somewhere in the jetty context, but can't find it.
Does anyone know the answer?