私が欲しいもの:
/ => /var/www/
/measurements /var/meassurements
「場所」を使用して取得するもの:
/ => /var/www/
/measurements => /var/measurements/measurements
私は何が間違っているのですか?
構成スニペット:
location / {
# root /usr/share/nginx/html;
root /var/www/;
index index.html index.htm;
}
location /measurements {
root /var/measurements/;
autoindex on;
}