How to add or ? /Web Nginx template?

w is name Web Nginx template include

# nginx configuration

autoindex off;

location /endpoint/ {
	rewrite ^/endpoint/(.*)$ /endpoint/index.php?path=$1;
}

location / {
  if (!-e $request_filename){
    rewrite ^(.*)$ /index.php?path=$1;
  }
}

https://docs.hestiacp.com/admin_docs/web.html

th…you, but I ask is: what is name Web Nginx template include autoindex off;