我有一个当前在gcloud中运行的烧瓶后端服务器,可通过XX.XXX.XXX.XXX:8000
的硬编码IP地址访问。此服务器对公共Web开放,我可以从我的localhost访问它。我试图通过nginx代理端口5000来命中这个后端服务器。目前,我只是硬编码IP地址进行测试。这是我的nginx .conf 文件:
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
upstream faststyle_local {
server XX.XXX.XXX.XXX:8000;
}
server {
listen 80;
server_name frontend;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}
server {
listen 5000;
location / {
proxy_pass http://faststyle_local;
}
}
}
当我使用nginx -c nginx.conf
在本地启动服务器时,服务器正常工作,当我点击 localhost:5000 时,我正确地代理到了后端服务器。
但是,当我尝试在docker容器中运行同一个服务器时, localhost:5000 的代理不起作用。
这是我的dockerfile:
FROM nginx:alpine
COPY default.conf /etc/nginx/default.conf
COPY dist /usr/share/nginx/html
我开始使用:
docker run -it -p 80:80 -p 5000:5000 IMAGE_NAME
我遇到的有关此问题的所有问题都涉及链接到本地运行的Docker容器,该容器对于容器化的nginx服务器是不可见的。这不是我的问题,因为我只是尝试代理到公共网络上运行的IP地址。我是nginx的新手,所以我可能会在 .conf 文件中遗漏一些明显的内容。