Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Upgrading from 8.1.8 to 9.1.0

The DefaultServlet (part of the servlet spec standard) is in play with the favicon.ico.

Since the favicon.ico is a static resource (in other words, you don't have any servlet-mappings that would match on /favicon.ico), it goes like this.

Serve it from the webapp, if it exists.
Otherwise serve the default one from the distribution.

Be sure you don't have any browser caching serving you an old image.
Try accessing the image via command line, and see what it downloads.

$ curl -O http://localhost:8443/favicon.ico




--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Expert advice, services and support from from the Jetty & CometD experts


On Thu, Oct 10, 2013 at 9:19 AM, John English <john.foreign@xxxxxxxxx> wrote:
Ooooh... and another thing...

Although everything is being served up from my webapp, which includes a "favicon.ico", when I access https://127.0.0.1:8443/favicon.ico I get the Jetty icon...

Any ideas why would this be?

TIA,

--
John English
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users


Back to the top