Home > other >  How can I get access to my Symfony app on my server?
How can I get access to my Symfony app on my server?

Time:09-15

I cloned my Symfony app to my server and when I want to open the website I get the error:

Forbidden

You don't have permission to access this resource. Apache Server at mywebsite.com Port 80

What does that mean?

CodePudding user response:

  1. I would check the owner of the files in terminal.
  2. I would check vhost file, on my local Ubuntu the location is /etc/apache2/sites-available/

CodePudding user response:

You could check if you didn't miss any important step from the webserver configuration documentation Configuring a Web Server

like installing the apache Symfony pack or manually set an .htaccess

CodePudding user response:

I had to link my domain to the public folder instead of the root folder

  • Related