thttpd: How to Selectively Remove Execute Permission?
I'm finally trying to get thttpd configured so I can have it serve images instead of Apache. Anyway, it seems that thttpd will only serve an image if it does not contain exceute permission, ie -rw-rw-rw-However, the parent directory must contain execute access, ie rwx-rwx-rwx. How is it possible to get all files within a directory and all files in sub-directories to be -rw-rw-rw-, yet still have the directories have execute permission (drwxrwxrwx)?
Or is there a simpler way to handle this? Thanks.