Created
February 16, 2015 19:57
-
-
Save serweb-labs/4a0d7edca4a7cafa0005 to your computer and use it in GitHub Desktop.
¿Apache2 403 Forbidden?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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