Skip to content
Snippets Groups Projects
Commit dcebbdd5 authored by timbastin's avatar timbastin
Browse files

Added ';' to proxy_pass

parent ef87377b
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ services:
echo:
image: hashicorp/http-echo
command: -text="hello world"
......
......@@ -26,7 +26,7 @@ http {
location / {
# always return static files
proxy_pass http://miniwhoami-loc1
proxy_pass http://miniwhoami-loc1;
}
}
......@@ -40,7 +40,7 @@ http {
location / {
# always return static files
proxy_pass http://miniwhoami-loc2
proxy_pass http://miniwhoami-loc2;
}
}
......@@ -54,7 +54,7 @@ http {
location / {
# always return static files
proxy_pass http://echo:5678
proxy_pass http://echo:5678;
}
}
......@@ -62,7 +62,6 @@ http {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
......
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