无法在heroku中加载favicon.ico for rest api

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法在heroku中加载favicon.ico for rest api相关的知识,希望对你有一定的参考价值。

我使用hapi创建了一个REST api,一切都在本地工作正常。我尝试在heroku中部署它,应用程序每次都崩溃,当我检查控制台的错误时,它显示:

无法加载资源:服务器favicon.ico响应状态为503(服务不可用)

我检查了如何处理这个问题,我发现很少有帖子说我需要添加一个端点来为/favicon.ico返回状态代码204。我为它创建了一条路线,如下所示:

server.route({
        method: 'GET',
        path: '/favicon.ico',
        handler: function (request, reply) {
            return reply(require('fs').createReadStream('../../favicon.ico')).code(200).type('image/x-icon');;
        }
})

再次它在本地工作正常但在heroku我得到相同的503错误。 heroku日志读起来像这样:

2018-02-25T04:56:18.826225+00:00 app[web.1]: Server running at: http://localhost:16689
2018-02-25T04:57:16.324815+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2018-02-25T04:57:16.324815+00:00 heroku[web.1]: Stopping process with SIGKILL
2018-02-25T04:57:16.406578+00:00 heroku[web.1]: Process exited with
status 137
2018-02-25T04:57:16.418790+00:00 heroku[web.1]: State changed from starting to crashed
2018-02-25T06:57:16.527520+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=profileapi.herokuapp.com
request_id=16403e1b-9e90-42f0-94c9-801960806944 fwd="157.49.157.106" dyno= connect= service= status=503 bytes= protocol=https
2018-02-25T06:57:17.983629+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=profileapi.herokuapp.com request_id=67f40452-1a05-440f-962a-a045563a73af fwd="157.49.157.106" dyno= connect= service= status=503 bytes= protocol=https
2018-02-25T06:57:27.478816+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=profileapi.herokuapp.com request_id=df2d9323-aa9d-4cff-9ef8-3722efda8a2f fwd="157.49.157.106" dyno= connect= service= status=503 bytes= protocol=https
2018-02-25T06:57:28.922698+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=profileapi.herokuapp.com request_id=cc5088e6-fb7b-4c7b-8bcb-c2db8556dd8e fwd="157.49.157.106" dyno= connect= service= status=503 bytes= protocol=https

我检查了hapi-favicon,模块用户指南文档是空的。我检查了它用于/favicon.ico端点的方式,我跟着它仍然得到相同的错误。

任何人都可以有任何建议/方法来解决这个问题吗?

答案

问题在于创建服务器时提供的host地址,我将HOSTPORT添加到服务器连接,如下所示:

server.connection({
    host: (process.env.HOST || 'localhost'),
    port: (process.env.PORT || 1643)
});

Heroku动态地将应用程序分配给端口和主机地址。我们必须使用(process.env.PORT || your_port)。同样,它将动态分配主机地址。我从连接中删除了主机。解决问题的最终连接如下:

server.connection({
    port: (process.env.PORT || 1643)
});

以上是关于无法在heroku中加载favicon.ico for rest api的主要内容,如果未能解决你的问题,请参考以下文章

jsp修改地址栏图标 我试过在head中加<link rel=”icon” href=”/favicon.ico”>,但是都没有用。为啥?

Favicon.ico显示问题

Web网站主如何更改网页标签的图标(favicon.ico)

shiro的/favicon.ico问题

favicon.ico设置及chrome浏览器不显示的解决方案

Webpack URIError:无法解码参数'/%PUBLIC_URL%/favicon.ico'