Skip to content
Snippets Groups Projects
Commit 16e9b075 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fix nginx port

parent b0c039e8
No related branches found
No related tags found
No related merge requests found
server { server {
listen 80; listen 8080;
server_name localhost; server_name localhost;
root /html/public; root /html/public;
index index.php index.html index.htm; index index.php index.html index.htm;
......
...@@ -13,7 +13,7 @@ services: ...@@ -13,7 +13,7 @@ services:
FPM_HOST: ${FPM_HOST} FPM_HOST: ${FPM_HOST}
image: ${IMAGE_NAME}/nginx:${IMAGE_TAG} image: ${IMAGE_NAME}/nginx:${IMAGE_TAG}
ports: ports:
- 8080:80 - 8080:8080
working_dir: /html working_dir: /html
volumes: volumes:
- ./app:/html - ./app:/html
......
...@@ -63,7 +63,7 @@ spec: ...@@ -63,7 +63,7 @@ spec:
imagePullPolicy: {{ .Values.nginx.image.pullPolicy }} imagePullPolicy: {{ .Values.nginx.image.pullPolicy }}
ports: ports:
- name: http - name: http
containerPort: {{ .Values.service.port }} containerPort: 8080
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment