Heisenberg submitted a new resource:
You must be registered for see links
- Permission setup to be able to use on-click upgradesAfter some time searching yesterday I finally found a solution that will let me do both upload files via SFTP and give nginx the correct permissions to allow one-click upgrades, install/upgrade from archive.
In ubuntu the group that nginx operates under is www-data so the trick is to add your user "demo" to the group www-data (since www-data is a group)
add user "demo" to group "www-data" (below replace demo with your username)
Bash:sudo usermod -a -G www-data demo...
You must be registered for see links
