I’m hoping someone can help me figure out what’s going on with my current situation.
I have a PHP application that I have successfully launched via a Cloud environment by using wget to grab a zip of it from a github release, unzipping it into a directory inside “webroot”, then using a symlink inside of “ROOT” referencing the app’s public folder. I go through all the installation steps and can reach the application via my browser. I haven’t had to change any directory/file permissions because the defaults in Cloud are suitable for everything to work properly.
I’m trying to deploy this same app in another environment, but via its git repo master branch using the Development Manager. I set up everything else exactly the same. But in this git repo master branch version, I’m getting a 403 error when trying to go to the associated webpage. I’ve tried specifically running chmod -R 755
for the app directory, but this didn’t fix the issue.
Any suggestions for what’s going on and how to overcome it?