forked from apache/trafficcontrol
-
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.
Convert Traffic Ops into a Service Oriented architecture(SOA) product (…
…apache#6754) * initial changes * working changes * formatting and cleanup * cleanup * adding log handlers * add dcos, cleanup * add todos * add todos * cleanup config * add insecure option to backend config * Adding proper log handlers * remove priv level from backend config * code review first pass * code review fixes final * change log call * change mutex type * addressing code review comments * change regex handling
- Loading branch information
1 parent
5a04033
commit 8a5e532
Showing
9 changed files
with
308 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"routes": [ | ||
{ | ||
"path": "^/api/4.0/foo?$", | ||
"method": "GET", | ||
"hosts": [ | ||
{ | ||
"protocol": "https", | ||
"hostname": "localhost", | ||
"port": 8444 | ||
}, | ||
{ | ||
"protocol": "https", | ||
"hostname": "localhost", | ||
"port": 8445 | ||
} | ||
], | ||
"insecure": true, | ||
"permissions": [ | ||
"CDN:READ" | ||
], | ||
"routeId": 123456, | ||
"opts": { | ||
"alg": "roundrobin" | ||
} | ||
}, | ||
{ | ||
"path": "^/api/4.0/foos?$", | ||
"method": "GET", | ||
"hosts": [ | ||
{ | ||
"protocol": "https", | ||
"hostname": "localhost", | ||
"port": 8444 | ||
}, | ||
{ | ||
"protocol": "https", | ||
"hostname": "localhost", | ||
"port": 8445 | ||
} | ||
], | ||
"insecure": true, | ||
"permissions": [ | ||
"CDN:READ" | ||
], | ||
"routeId": 123457, | ||
"opts": { | ||
"alg": "roundrobin" | ||
} | ||
} | ||
] | ||
} |
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,3 @@ | ||
{ | ||
"routes": [], | ||
} |
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
Oops, something went wrong.