Forbidden Access, Xampp in Amazon EC2

0

I have an Amazon EC2 (windows server) where xampp has been installed to run PHP applications, an SSL security certificate has been implemented in the xampp, the issue is that there are other applications developed by another programmer and that they are running without problems, while the application that we just uploaded developed in laravel gives us the error 403 prohibited access.

Someone has some idea of this, I already tried to give read permissions to the folders but nothing.

    
asked by Mario Lozano 15.06.2018 в 01:15
source

1 answer

0

Check the configuration of your Apache, that has this configuration

<Directory "/home/domain/www">
        Options +Indexes FollowSymLinks +ExecCGI
        AllowOverride AuthConfig FileInfo
                Order allow,deny
        Allow from all
</Directory>
    
answered by 23.10.2018 в 21:18