Skip to content

Commit

Permalink
Remove geoserver_ui variable from .env.sample
Browse files Browse the repository at this point in the history
  • Loading branch information
giohappy committed Aug 22, 2023
1 parent cb3eb5b commit d1e29a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ RESOLVER=127.0.0.11
# #################
GEOSERVER_LB_HOST_IP=geoserver
GEOSERVER_LB_PORT=8080
GEOSERVER_WEB_UI_LOCATION={geoserver_ui}/geoserver/
GEOSERVER_PUBLIC_LOCATION={geoserver_ui}/geoserver/
GEOSERVER_WEB_UI_LOCATION={siteurl}/geoserver/
GEOSERVER_PUBLIC_LOCATION={siteurl}/geoserver/
GEOSERVER_LOCATION=http://${GEOSERVER_LB_HOST_IP}:${GEOSERVER_LB_PORT}/geoserver/
GEOSERVER_ADMIN_USER=admin
GEOSERVER_ADMIN_PASSWORD={geoserverpwd}
Expand Down
1 change: 0 additions & 1 deletion create-envfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def _get_vals_to_replace(args):
_vals_to_replace["https_host"] = _jsfile.get("hostname", args.hostname) if tcp == "https" else ""

_vals_to_replace["siteurl"] = f"{tcp}://{_jsfile.get('hostname', args.hostname)}"
_vals_to_replace["geoserver_ui"] = f"{tcp}://{_jsfile.get('hostname', args.hostname)}"
_vals_to_replace["secret_key"] = _jsfile.get("secret_key", args.secret_key) or "".join(
random.choice(_strong_chars) for _ in range(50)
)
Expand Down

0 comments on commit d1e29a5

Please sign in to comment.