This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
273bb52
commit b7989d1
Showing
6 changed files
with
43 additions
and
41 deletions.
There are no files selected for viewing
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
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
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
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
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 { | ||
server_name _; | ||
listen 8480; | ||
access_log /var/log/nginx/access.log; | ||
error_log /var/log/nginx/error.log debug; | ||
|
||
if ($arg_baseUrl) { | ||
rewrite ^(.*)$ /baseUrl/$1; | ||
} | ||
|
||
location ~ /baseUrl/ { | ||
resolver 127.0.0.11 ipv6=off; | ||
proxy_pass $arg_baseUrl$request_uri; | ||
} | ||
|
||
location ~ /hawtio { | ||
proxy_pass http://p6core:8080; | ||
} | ||
|
||
location ~ /p6/vmstats { | ||
proxy_pass http://p6core:8080; | ||
} | ||
|
||
location ~ / { | ||
proxy_pass http://portalbucket.amalto.com; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.