Comments for omitobisoft https://omitobisoft.wordpress.com This is tobisoft Mon, 03 Oct 2016 10:50:27 +0000 hourly 1 http://wordpress.com/ Comment on Inspired by Laravel, bugged by file permission by omitobisam https://omitobisoft.wordpress.com/2016/09/07/inspired-by-laravel-bugged-by-file-permission/comment-page-1/#comment-6 Mon, 03 Oct 2016 10:50:27 +0000 http://omitobisoft.wordpress.com/?p=395#comment-6 In reply to Warlord.

Thanks for your comment. I couldn’t personally agree more about this fact with Nginx as I found as well on this page: https://www.digitalocean.com/community/tutorials/how-to-install-laravel-with-an-nginx-web-server-on-ubuntu-14-04

Liked by 2 people

]]>
Comment on Inspired by Laravel, bugged by file permission by Warlord https://omitobisoft.wordpress.com/2016/09/07/inspired-by-laravel-bugged-by-file-permission/comment-page-1/#comment-5 Wed, 21 Sep 2016 08:00:32 +0000 http://omitobisoft.wordpress.com/?p=395#comment-5 This is pretty common that the files aren’t associated with www-data. More so with Nginx as that runs as a user ‘nginx’ by default. Then when I copy stuff between systems it fails again. I tend to use find to set things right along with the groups change above.

$ sudo find * -type d -exec chmod 775 {} \;
$ sudo find * -type f -exec chmod 664 {} \;
$ sudo chgrp www-data * -R

Liked by 2 people

]]>