-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from rafaelshayashi/feature/improve-config-fil…
…es-structure Feature/improve config files structure
- Loading branch information
Showing
3 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
server { | ||
|
||
# Ports for incoming requests | ||
listen 80; | ||
listen [::]:80; | ||
listen 443; | ||
listen [::]:443; | ||
|
||
server_name proxy; | ||
|
||
# Proxy routes | ||
location /config-server/ { | ||
proxy_pass http://config-server:8080/; | ||
} | ||
|
||
location /catalogue/ { | ||
proxy_pass http://catalogue:8080/; | ||
} | ||
|
||
location /library/ { | ||
proxy_pass http://library:8080/; | ||
} | ||
|
||
location /auth/ { | ||
proxy_pass http://sso:8080/; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.