暴露端口后尝试本地访问 Docker 化服务时出现 403 Forbidden 错误

问题描述 投票:0回答:1

我当前正在 Docker 环境中运行脚本,并在使用 Docker 公开端口后尝试在本地访问服务。但是,当我尝试通过本地浏览器中的公开端口访问该服务时,我收到 403 Forbidden 错误。

这是我到目前为止所做的:

  1. 启动了一个 Docker 容器,并在其中运行了必要的服务。

  2. 运行 Docker 容器时使用

    -p
    标志公开所需端口,例如:
    docker run -d -p 8080:80 <image_id>

尽管遵循了这些步骤,但在本地浏览器中尝试通过

http://localhost:8080/
访问服务时,我始终遇到 403 Forbidden 错误。

有人可以提供有关可能导致此问题的原因以及如何解决它的指导吗?我的 Docker 环境中是否需要调整任何特定配置或设置?

任何帮助将不胜感激。谢谢!

docker containers export port ngrx
1个回答
0
投票

403 表明您正在访问您的服务,请检查您的服务日志。

类似例子:

docker run -d --rm -p 80:80 nginx
curl 127.0.0.1

结果:

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
© www.soinside.com 2019 - 2024. All rights reserved.