我需要有关nginx-php应用程序部署的帮助。我对尝试运行php代码的kubernetes完全陌生。我在minikube上运行它。
这是我的Dockerfile文件
FROM php:7.2-fpm
RUN mkdir /app
COPY hello.php /app
这是我的web.yaml文件,其中包含“部署和服务”
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: web-deployment
labels:
app: web-server
spec:
replicas: 1
template:
metadata:
labels:
app: web-server
spec:
volumes:
# Create the shared files volume to be used in both pods
- name: shared-files
emptyDir: {}
- name: nginx-config-volume
configMap:
name: nginx-config
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80
volumeMounts:
- name: shared-files
mountPath: /var/www/html
- name: nginx-config-volume
mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
- name: php-fpm
image: my-php-app:1.0.0
ports:
- containerPort: 80
volumeMounts:
- name: shared-files
mountPath: /var/www/html
lifecycle:
postStart:
exec:
command: ["/bin/sh", "-c", "cp -r /app/. /var/www/html"]
---
apiVersion: v1
kind: Service
metadata:
name: web-service
labels:
app: web-server
spec:
ports:
- port: 80
type: NodePort
selector:
app: web-server
这是我的Nginx ConfigMap的config.yaml文件
kind: ConfigMap
apiVersion: v1
metadata:
name: nginx-config
data:
nginx.conf: |
events {
}
http {
server {
listen 80 default_server;
listen [::]:80 default_server;
# Set nginx to serve files from the shared volume!
root /var/www/html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
}
}
我已经使用创建了部署,服务和configmap
kubectl create -f web.yaml
kubectl create -f configmap.yaml
获得IP和端口后
minikube service web-service --url
我得到一个这样的IP http://192.168.99.100:31170 当我浏览该IP时,会收到类似 nginx 403禁止的
这样的响应我在这里做什么错了?
答案 0 :(得分:1)
好像nginx无法访问默认页面。
将index hello.php
添加到nginx配置
location / {
index hello.php;
try_files $uri $uri/ =404;
}
或者,
通过访问您的应用程序
绝对网址http://192.168.99.100:31170/hello.php