I have a website developed using Symfony framework by some other developers. I have configured it successfully on one of my hosting server. And it is working fine. It has some sort of security feature applied so that it asks for login when we open the site. Just like .htpasswd security but haven’t found that .htpasswd file anywhere.
Now, I deployed same site using same steps on another dedicated server where it deployed successfully, I can even open the backend as it do not asks for login details. But when I open the frontend, it asks for login details. I entered the same login details which worked on previous server but it is not working due to some reason.
Can anyone suggest me how this security is given? And what should be the steps to remove this security ?
I fixed up the issue, it was with the Auth filter created by previous developer. Just disabled it inside filters.yml file. Thank you for all the help.