Hey everybody, I just bought a linode last night and I ended up installing the Arch Linux flavor. I installed the nginx server succesfully with the pacman package handler. And the server is up and running.
I have a linux/nginx noob question though.
when I set up the nginx.conf file with the documentation found in the linode tutorials it has the root directive set to this :
Code:
root /srv/http/example.com/public;
it works; however I made a directory in my root
Code:
/mywebfiles
and changed the root directive appropriately
Code:
root /mywebfiles;
and it gives me a 404 when ever I point to my web address.
Am I missing something here? Am I not allowed to server up files from anywhere else other then the /srv/ directory? or do I need to CHMOD my /mywebfiles/ directory ?
this is most likely a simple issue to an expirienced user.
Thank you for reading.
-Isaac