Nginx and favicon.ico - "GET /favicon.ico HTTP/1.1" FAILED
location = /favicon.ico {
log_not_found off;
}
The best solution for me is:
location = /favicon.ico {
return 204;
access_log off;
log_not_found off;
}
location = /favicon.ico {
log_not_found off;
}
The best solution for me is:
location = /favicon.ico {
return 204;
access_log off;
log_not_found off;
}