forked from Katenary/katenary
24 lines
567 B
YAML
24 lines
567 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: '{{ .Release.Name }}-config-nginx-http'
|
|
labels:
|
|
katenary.io/component: ""
|
|
katenary.io/project: same-pod
|
|
katenary.io/release: '{{ .Release.Name }}'
|
|
annotations:
|
|
katenary.io/docker-compose-sha1: 74e67695bfdbb829f15531321e158808018280e0
|
|
katenary.io/version: master-bf44d44
|
|
data:
|
|
default.conf: |
|
|
upstream _php {
|
|
server unix:/sock/fpm.sock;
|
|
}
|
|
server {
|
|
listen 80;
|
|
location ~ ^/index\.php(/|$) {
|
|
fastcgi_pass _php;
|
|
include fastcgi_params;
|
|
}
|
|
}
|