Skip to content

Commit

Permalink
galaxyproject#1429 Allow --host parameter
Browse files Browse the repository at this point in the history
Don't set a static host when it is able to be provided by planemo, use the provided value if available
  • Loading branch information
selten authored Feb 9, 2024
1 parent e69487c commit 80c7df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/galaxy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def write_galaxy_config(galaxy_root, properties, env, kwds, template_args, confi
"galaxy": properties,
"gravity": {
"galaxy_root": galaxy_root,
"gunicorn": {"bind": f"localhost:{template_args['port']}"},
"gunicorn": {"bind": f"{kwds.get('host', 'localhost'}:{template_args['port']}"},
"gx-it-proxy": {
"enable": False,
},
Expand Down

0 comments on commit 80c7df2

Please sign in to comment.