Origam HTML5 server is usually deployed behind a proxy server, either IIS or NGINX (in case of docker instance). At the moment the proxy server should be used to serve a custom favicon.
IIS
UrlRewrite needs to be installed.
Sample of the web.config, where instead of standard favicon.ico is served favicon.png from the customAssets.
If I have a look into docker, I can find that the configuration is correctly cloned and favicon.ico file is available in the expected location.
The problem is that server doesn’t use it. Application is running on HTTPS protocol, could you please navigate me what to check and how the nginx configuration should look like?
The Nginx Proxy configuration is correct. Origam server in docker container is listening on port 8080, but the Nginx with this configuration is listening on port 80.
To correct this, create a docker container with the parameter “-p outsideport:80” and then the Nginx with favicon will be used.