8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / virtual_machines / _show_help.html.erb
1 <p>
2 Sample <code>~/.ssh/config</code> section:
3 </p>
4
5 <pre>
6 Host *.arvados
7   ProxyCommand ssh -p2222 turnout@switchyard.<%= current_api_host || 'xyzzy.arvadosapi.com' %> -x -a $SSH_PROXY_FLAGS %h
8 <% if @objects.first.andand.current_user_logins.andand.first %>
9   User <%= @objects.first.current_user_logins.andand.first %>
10 <% end %>
11 </pre>
12
13 <p>
14 Sample login command:
15 </p>
16
17 <pre>
18 ssh <%= @objects.first.andand.hostname.andand.sub('.'+current_api_host,'') or 'vm-hostname' %>.arvados
19 </pre>
20
21 <p>
22   See also:
23   <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; SSH access'),
24   "#{Rails.configuration.arvados_docsite}/user/getting_started/ssh-access-unix.html",
25   target: "_blank"%>.
26 </p>