我正在尝试使用 Docker 映像在 Symfony 上运行 Mercure。
symfony/mercure 版本:“v0.2.0”,
docker-compose.yaml 配置:
mercure:
container_name: mercure
image: dunglas/mercure
environment:
- JWT_KEY=MySecret
- DEMO=1
- ALLOW_ANONYMOUS=1
- PUBLISH_ALLOWED_ORIGINS=http://my_project.com:9090/hub
- DEBUG=1
- CORS_ALLOWED_ORIGINS=*
ports:
- "9090:80"
当我访问http://my_project.com:9090/时,可以看到可行的 Mercure 调试工具页面。Mercure 已正确安装并使用 docker 容器运行。
Symfony .env 文件:
MERCURE_PUBLISH_URL=http://my_project.com/hub
MERCURE_JWT_SECRET=valid_generated_JWT_token
MERCURE_JWT_SECRET 是使用来自 Docker 配置 (MySecret) 的 JWT_KEY 生成的有效 JWT 令牌,带有有效负载:
{
"mercure": {
"publish": []
}
}
当我尝试这样的简单示例时:
public function getCountUnreadMessagesAction(Publisher $publisher)
{
// some API logic
$update = new Update(
'http://my_project.com/api/v1/messages/count-unread',
json_encode(['count' => $count])
);
// The Publisher service is an invokable object
$publisher($update);
// return 200
return $this->ok((int)$count);
}
我收到错误消息“无法连接到服务器” http://my_project.com/hub
尝试在 MERCURE_PUBLISH_URL 上添加端口 9090 或 80,但出现相同的错误。每次更改 .env 文件时,我都会重新启动 Docker。
如何使用 Docker 配置正确设置 Mercure 集线器的 URL?
编辑:
我在 Docker 之外的 JS 代码:
<script type="application/javascript">
const es = new EventSource('http://my_project.com:9090/hub?topic=' + encodeURIComponent('http://my_project.com/api/v1/messages/count-unread'));
es.onmessage = e => {
// Will be called every time an update is published by the server
console.log(JSON.parse(e.data));
}
</script>
在 Docker 中设置 - CORS_ALLOWED_ORIGINS=* 后我对 CORS 没有问题。我不在 JS 中使用 JWT 进行身份验证。