Skip to content

Commit

Permalink
Merge pull request #77 from RoadieHQ/sc-24041-use-subdomain-iso-by-de…
Browse files Browse the repository at this point in the history
…fault

Use subdomain isolation by default on GHES broker.
  • Loading branch information
Xantier authored Dec 5, 2024
2 parents ea77ad6 + c96f960 commit f96d9dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/github-enterprise/accept.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
},
{
"method": "GET",
"path": "/raw/*",
"origin": "${GHES_URL}",
"path": "/*",
"origin": "${GHES_RAW_URL}",
"auth": {
"scheme": "token",
"token": "${GHES_TOKEN}"
Expand Down
4 changes: 4 additions & 0 deletions dockerfiles/github-enterprise/start
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ if [ -z "GHES_URL"]; then
echo "You must provide GHES_URL"
exit 1
fi
if [ -z "GHES_RAW_URL"]; then
echo "You must provide GHES_RAW_URL"
exit 1
fi

if [ -z "GHES_TOKEN"]; then
echo "You must provide GHES_TOKEN"
Expand Down

0 comments on commit f96d9dc

Please sign in to comment.