Simon de Jong
New Pleskian
- Server operating system version
- AlmaLinux 9.6
- Plesk version and microupdate number
- 18.0.71.0
I am migrating a Laravel application from Webmin / CentOS 7 to a Plesk server. I am using the Laravel Toolkit extention to manage my app. I am using SSHFS to mount a remote storage which the app uses as it's main storage (private and public). I mount the storage as follows:
This method of mounting is the same as what we used on the old CentOS / Webmin server. It worked fine there. However, on the Plesk server I get a 403 when trying to access the public files. The file permissions are all set the same as on the old server. Both servers use Apache and the .htaccess is identical.
Does anybody know why using SSHFS seems to cause issues on the Plesk server? Thanks in advance for any help!
Code:
sshfs USER@IP_ADDRESS:/mnt/bigstorage/app/public ~/httpdocs/public/storage -o reconnect
Code:
sshfs USER@IP_ADDRESS:/mnt/bigstorage/app ~/httpdocs/public -o reconnect
This method of mounting is the same as what we used on the old CentOS / Webmin server. It worked fine there. However, on the Plesk server I get a 403 when trying to access the public files. The file permissions are all set the same as on the old server. Both servers use Apache and the .htaccess is identical.
Does anybody know why using SSHFS seems to cause issues on the Plesk server? Thanks in advance for any help!