Question
404 Not Found nginx/1.4.6 (Ubuntu)
Our site return “404 Not Found nginx/1.4.6 (Ubuntu)” when we browse it. I tried reboot the server but error still exist.
Can you help us regarding with this problem.
Thank you.
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.
×
Here is my nginx.conf:
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
workerconnections 768;
# multiaccept on;
}
http {
}
mail {
# See sample authentication script at:
# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# auth_http localhost/auth.php;
# pop3_capabilities “TOP” “USER”;
# imap_capabilities “IMAP4rev1” “UIDPLUS”;
server {
listen localhost:110;
protocol pop3;
proxy on;
server {
listen localhost:143;
protocol imap;
proxy on;
}