Answers for "web server not running due to lack of necessary permissions in linux nginx"

0

web server not running due to lack of necessary permissions in linux nginx

sudo chown -R USER /var/www/html/
sudo find /var/www/html -type d -exec chmod u+rwx {} +
sudo find /var/www/html -type f -exec chmod u+rw {} +
Posted by: Guest on April-29-2021

Code answers related to "web server not running due to lack of necessary permissions in linux nginx"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language