我必须使用 podman 容器、nginx 和 php。我暴露了 php 的 9000 端口,并发布了 nginx 容器的 80 端口。我现在想在两个容器之间创建一个连接,但是在 nginx 配置中我需要为 php 指定一个 IP 地址或域。
是否可以给 php 容器起一个可以在 nginx 配置中使用的名称?
这是我的 nginx 配置文件:
server{
listen 80;
root /usr/share/nginx/html;
location / {
fastcgi_pass 10.88.0.25:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
}
}