I hope I am not being daft but I'm having an issue with file and folder permissions on CWP.
When I create a folder as a user in the CWP File Manager, it sets permissions to 755 and files 644. This all works fine and serves the file correctly in the browser. However, if I SSH into the server as a user and create a folder/file, it sets the folder permissions to be 775 and files 664 which causes a 500 error and logs:
SoftException in Application.cpp:249: File "/home/onapp/test/public/index.php" is writeable by group
I can of course use chmod to change the permissions manually afterwards which works fine BUT the issue comes when I use laravel and npm as it always writes the permissions incorrectly (775 and 664).
I have tried adding the user to the nobody group but that breaks it alltogether with a security exception in the log.
Can someone provide any pointers as to what I am doing wrong and how I can fix this issue?