You can continue experimenting. For instance place an index.html
in every place and see which one matches.
Note that you are matching with location /manage
so, this will only work for files and folders that have that name. You’ll have to call your file in a way that matches. Maybe create a manage
folder in /var/www/your_domain/html/
You can also use regular expressions when matching the path, like location ~ /manage
(this matches a lot), and there’s also location = /manage
(this matches just this one path, if I remember correctly). Experiment…