How to return one file to the location directive without any backups? Try_files requires at least two. It seems simple, but I cannot find it in documents or examples.
location / { try_files one_file; # => wrong number of parameters }
The easiest way is to use the option of redirecting to an error code if the file does not exist.
location / { try_files /theOnlyFile.html =404; }