-
-
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.
Move env vars to new env file Parse whitelisted origins better Exit web config script early if file exists Echo commands executed in entrypoint
- Loading branch information
1 parent
141dd89
commit eed1f88
Showing
4 changed files
with
52 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
##################### | ||
### DOCKER-VIAAAS ### | ||
##################### | ||
|
||
################ | ||
## WEB CONFIG ## | ||
################ | ||
|
||
# See https://docs.microsoft.com/en-us/azure/active-directory/develop/scenario-spa-app-registration | ||
AZURE_CLIENT_ID="my-client-id" | ||
|
||
# Change to your Web UI domain(s) | ||
WHITELISTED_ORIGINS=" | ||
https://viaaas.example.com | ||
https://anotherone.com | ||
" | ||
|
||
# OPTIONAL | ||
#CORS_PROXY="cors.example.com" | ||
|
||
# OPTIONAL | ||
#INSTANCE_SUFFIX="viaaas.example.com[:25565]" |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
set -ex | ||
|
||
for SCRIPT_FILE in $(find /scripts -type f -print) | ||
do | ||
|
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