Skip to content

Commit 9a233a4

Browse files
committed
Map jupyer, update variable names
1 parent 96dc329 commit 9a233a4

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

topics/admin/tutorials/interactive-tools/tutorial.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,13 @@ As explained in the previous section, we will proxy the Interactive Tools Proxy
310310
> ```yaml
311311
> nginx_ssl_servers:
312312
> - galaxy
313-
> - galaxy-gie-proxy
313+
> - galaxy-gxit-proxy
314314
> ```
315315
> {% endraw %}
316316
>
317-
> The nginx configuration `galaxy-gie-proxy` doesn't exist yet, but we'll create it in a moment.
317+
> The nginx configuration `galaxy-gxit-proxy` doesn't exist yet, but we'll create it in a moment.
318318
>
319-
> 2. Create `templates/nginx/galaxy-gie-proxy.j2` with the following contents:
319+
> 2. Create `templates/nginx/galaxy-gxit-proxy.j2` with the following contents:
320320
>
321321
> {% raw %}
322322
> ```nginx
@@ -592,6 +592,7 @@ A few Interactive Tool wrappers are provided with Galaxy, but they are [commente
592592
> <toolbox monitor="true">
593593
> <section id="interactivetools" name="Interactive Tools">
594594
> <tool file="interactive/interactivetool_ethercalc.xml" />
595+
> <tool file="interactive/interactivetool_jupyter_notebook_1.0.1.xml" />
595596
> </section>
596597
> </toolbox>
597598
> ```
@@ -641,6 +642,8 @@ A few Interactive Tool wrappers are provided with Galaxy, but they are [commente
641642
> + tools:
642643
> + - id: interactive_tool_ethercalc
643644
> + environment: local_interactive_env
645+
> + - id: interactive_tool_jupyter_notebook
646+
> + environment: local_interactive_env
644647
> ```
645648
>
646649
> Of considerable note is the `docker_volumes` param: the variable expansions are explained in the [advanced sample job configuration][job-conf-docker]. We'll use this volume configuration for now but it has some considerable data security problems. We'll discuss a better solution at the end of this tutorial.
@@ -1002,13 +1005,13 @@ The next step is configuring Galaxy and the Interactive Tool Proxy to use the ne
10021005
> galaxy_config:
10031006
> galaxy:
10041007
> # ... existing configuration options in the `galaxy` section ...
1005-
> # interactivetools_map: "{{ gie_proxy_sessions_path }}" # comment, remove or leave this line in place (it will be overridden by the option below)
1006-
> interactivetoolsproxy_map: "{{ gie_proxy_sessions_path }}"
1008+
> # interactivetools_map: "{{ galaxy_config.gravity.gx_it_proxy.sessions }}" # comment, remove or leave this line in place (it will be overridden by the option below)
1009+
> interactivetoolsproxy_map: "{{ gxit_proxy_sessions_path }}"
10071010
> # ... other existing configuration options in the `galaxy` section ...
10081011
>
10091012
> # ... other existing configurations ... #
10101013
>
1011-
> gie_proxy_sessions_path: "postgresql:///gxitproxy?host=/var/run/postgresql"
1014+
> gxit_proxy_sessions_path: "postgresql:///gxitproxy?host=/var/run/postgresql"
10121015
> ```
10131016
> {% endraw %}
10141017
>

0 commit comments

Comments
 (0)