Commit 80902c26 authored by Manuel's avatar Manuel

updated deployment files

parent a4026e6a
...@@ -7,6 +7,11 @@ spec: ...@@ -7,6 +7,11 @@ spec:
selector: selector:
app: dashboard app: dashboard
ports: ports:
- name: http
port: 80
targetPort: 80
nodePort: 30468
protocol: TCP
- name: https - name: https
port: 443 port: 443
targetPort: 443 targetPort: 443
......
...@@ -10,3 +10,13 @@ server { ...@@ -10,3 +10,13 @@ server {
try_files $uri /index.html; try_files $uri /index.html;
} }
} }
server {
listen 80;
server_name demo_http;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment