Skip to content

Instantly share code, notes, and snippets.

@serweb-labs
Created February 16, 2015 19:57
Show Gist options
  • Save serweb-labs/4a0d7edca4a7cafa0005 to your computer and use it in GitHub Desktop.
Save serweb-labs/4a0d7edca4a7cafa0005 to your computer and use it in GitHub Desktop.
¿Apache2 403 Forbidden?
#si actualizaste apache recientemente hay unos cambios que debes hacer
<Directory "your directory here">
Order allow,deny
Allow from all
Require all granted #<--- explicit
</Directory>
<location /cgi-bin>
AddHandler cgi-script .cgi .pl
Options +ExecCGI -Indexes #<- mas y menos explicitos
</location>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment