我在minikube上有phpfpm,mariadb和apache pods。所有的Pod,容器,服务以及其他相关组件现在都可以使用,我可以使用“ curl localhost”访问以访问apache容器中的主页。即使我使用NodePort并公开了Web服务器服务,但是当我尝试“卷曲IP”时,我仍然遇到“连接被拒绝”错误。
GCP上的Debian 9.9。 minikube版本:v1.1.0 头盔版本:v2.14.0
replicaCount: 1
image:
name: 7.3-apache
pullPolicy: IfNotPresent
nginxService:
name: nginx
type: NodePort
externalPort: 80
internalPort: 8080
phpfpmService:
name: phpfpm
type: NodePort
phpfpmPort: 9000
ingress:
enabled: false
config:
nginx.conf: |-
server {
listen 0.0.0.0:8080;
root /app;
location / {
index index.html index.php;
}
location ~ \.php$ {
fastcgi_pass phpfpm-php-app-phpfpm:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
我希望将Web服务器与http://192.168.99.102:30335连接,但不能。