I'm running CentOS 6.3 and Apache 2.2.15.
I'm using the defaults setup for apache. The files I'm serving are in
/var/www/html
Here are two of them
[root@gisele html]# ls -l *-production-1.0.6.pdf
-r--r--r--. 1 root root 171769 Jan 1 21:12 copy-installation-production-1.0.6.pdf
-r--r--r--. 1 root root 171769 Jan 1 20:59 installation-production-1.0.6.pdf
The copy file is a file created by doing
cp installation-production-1.0.6.pdf copy-installation-production-1.0.6.pdf
Through a virtual host mapping I'm accessing these documents.
copy-installation-production-1.0.6.pdf
will serve.
installation-production-1.0.6.pdf
returns a 403 forbidden.
The only difference, is that the original file was copied onto the server from another machine.
Any idea why this original file will not serve but the copy will?