Created
March 11, 2016 16:47
-
-
Save baldur/7dee339df3683f2986d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/docker-compose.yml b/docker-compose.yml | |
index 29918f0..28ae36a 100644 | |
--- a/docker-compose.yml | |
+++ b/docker-compose.yml | |
@@ -13,7 +13,7 @@ api: | |
web-proxy: | |
build: ./web-proxy | |
ports: | |
- - "80:80" | |
+ - "81:81" | |
links: | |
- proxy | |
- api | |
diff --git a/web-proxy/nginx.conf b/web-proxy/nginx.conf | |
index 4903ae4..728c508 100644 | |
--- a/web-proxy/nginx.conf | |
+++ b/web-proxy/nginx.conf | |
@@ -7,7 +7,7 @@ http { | |
} | |
server { | |
- listen 80; | |
+ listen 81; | |
server_name apiaxle-api; | |
location /v1 { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment