I'm trying to install Symfony for the first time, following the official guide. So, installing the symfony installer went smoothly, then running symfony new my_project_name
creates the folder under /home/myuser/public_html/my_project_name
. Then, trying to open mydomain.com
results in a 403 Forbidden
page. If I try to open mydomain.com/my_project_name
it's also a 403 Forbidden
.
Looking in the Apache configuration, I see user apache and group apache. So I'm trying to chown
the whole project folder to apache.apache
- doesn't help.
Tried to run composer install
or composer update
- doesn't help either.
Any help would be appreciated.