Using a mounted NTFS share with nginx

Solution 1:

I have FINALLY managed to get this figured out! Turns out it was a problem with the mount - instead of relying on the server (Windows) to pass inode numbers, I set the client (Ubuntu) to generate inode numbers, and lo-behold it worked! Here's what I changed my mount command to look like in /etc/fstab:

//192.168.0.199/c$/Websites/ /mnt/webfiles cifs username=Jordan,password=xxx,gid=33,uid=33,rw,noserverino 0 0

The kicker is the noserverino option. Time for a beer.