index.html files not loading automatically from the USB drive #6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The most recent image (raspi4_butter_new_portal_changes_v0.0.1_120326.img.tar.gz) did not load index files by default because the URL changed from http://butterbox.local/usb-butter to http://butterbox.local/files/ so I changed the Nginx file path to:
location /files/ {
alias /media/usb-butter/;
index index.html;
}
And that fixed the issue.