Reputation: 4539
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.
Upvotes: 0
Views: 2162
Reputation: 2206
You can follow the official guide on how to setup the web server for apache / nginx : https://symfony.com/doc/current/setup/web_server_configuration.html
You might be missing something in your virtualhost.
The "no input file specified" seems to be related to an .htaccess issue. Related topic : No input file specified - apache and php-fastcgi
Upvotes: 1