Skip to content

Commit

Permalink
Merge pull request #1430 from selten/patch-1
Browse files Browse the repository at this point in the history
#1429 Allow --host parameter
  • Loading branch information
mvdbeek authored Feb 12, 2024
2 parents e69487c + 6142e83 commit ee6a41e
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 ee6a41e

Please sign in to comment.