Hey!
When I I try to restart nginx, after editing sudo nano /etc/nginx/sites-available/default, I get this fail response:
Restarting nginx nginx [fail]
I then do nginx -t and get this message:
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2016/04/28 20:06:07 [warn] 6121#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:1
2016/04/28 20:06:07 [emerg] 6121#0: unexpected "}" in /etc/nginx/sites-enabled/default:84
nginx: configuration file /etc/nginx/nginx.conf test failed
So what am I doing wrong and how can I fix it? It seems there is two things going wrong?
Thanks in advance.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
When running nginx -t
and attempting to start/restart nginx were you using sudo?
Have you changed the default user and group that nginx runs under?
This comment has been deleted
Hi,
What happens if you do
sudo nginx -t
?NEW MESSAGE
By the way, I was following https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-14-04 guide.