Skip to content

Commit

Permalink
Merge pull request oracle#1451 from qvdang/ssl_enable
Browse files Browse the repository at this point in the history
Read SSL_ENABLED from the env in case it's not provided in the docker…
  • Loading branch information
mriccell authored Dec 9, 2019
2 parents 9e5ca76 + d03458d commit 1e616ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def getEnvVar(var):
# This python script is used to create a WebLogic domain

#domain_uid = DOMAIN_UID
ssl_enabled = SSL_ENABLED
ssl_enabled = os.environ.get("SSL_ENABLED")
managed_server_port = int(os.environ.get("MANAGED_SERVER_PORT"))
managed_server_ssl_port = int(os.environ.get("MANAGED_SERVER_SSL_PORT"))
domain_path = os.environ.get("DOMAIN_HOME")
Expand Down

0 comments on commit 1e616ee

Please sign in to comment.