Comportamiento deseado
Para poder acceder a localhost en el navegador sin recibir el mensaje 403 Prohibido.
Comportamiento actual
Navegando a localhost en el navegador devuelve:
Forbidden
You don't have permission to access / on this server.
Apache/2.4.7 (Ubuntu) Server at localhost Port 80
Pasos para reproducir
Configuré un servidor local al Linux Mint 17 Cinnamon
usar estos pasos:
$ sudo apt-get install apache2 php5
$ sudo apt-get install php5-dev php5-cli
$ sudo apt-get install php-pear
$ pear version
// PEAR Version: 1.9.4
// PHP Version: 5.5.9-1ubuntu4.5
// Zend Engine Version: 2.5.0
// Running on: Linux my-computer 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64
$ pecl version ## as above
$ sudo pecl install mongo ## this installs the mongo driver
En este punto, se me solicitó algo que contenía [no] y presioné enter.
$ cd /etc/php5/apache2
$ sudo vi php.ini
Al final del archivo agregué: extension=mongo.so
$ sudo /etc/init.d/apache2 restart
Al final de este proceso, ayer, pude acceder a localhost con éxito.
Hoy, recibo el error 403 cuando navego a localhost.
Solución de problemas
Estado Apache
me@my-computer ~ $ /etc/init.d/apache2 status
* apache2 is running
Permisos
/ var
drwxr-xr-x 12 root root 4096 Nov 23 08:58 var
/ var / www
drwxr-xr-x 3 root root 4096 Nov 23 08:58 www
/ var / www / html
drwx------ 8 me me 4096 Nov 22 01:07 html
/var/www/html/index.html
-rw-r--r-- 1 root root 11510 Nov 23 08:59 index.html
fuente
Deberías dar acceso de ejecución / lectura a Apache. La forma en que @ user1063287 dijo es buena pero puede tener problemas de seguridad, dando acceso a otros. Creo que de esta manera es mejor:
1) haz que apache sea el propietario de la raíz de tu sitio:
2) dale acceso completo
fuente