i want to serve file on nginx server here's the case below
serve location /home/ubuntu/username/fileName
eg1 /home/ubuntu/john/d1.txt
eg2 /home/ubuntu/john/d2.txt
eg3 /home/ubuntu/kiddo/d3.txt
it is not accessable using.
location ~ /home/ubuntu/(?<user>.+)/(?<file>.+)$ {
root /home/ubuntu/$user/$file;
}