panel/admin: Continue moving out information
This page further splits up the admin page into several parts.
This commit is contained in:
parent
ff92df3a87
commit
419902c59b
12 changed files with 645 additions and 271 deletions
38
internal/dis/component/server/admin/html/instance_ssh.html
Normal file
38
internal/dis/component/server/admin/html/instance_ssh.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<div class="pure-u-1-1">
|
||||
<h2>SSH Access</h2>
|
||||
<p>
|
||||
Every WissKI Instance comes with access via SSH.
|
||||
Every distillery user that has administrative access to this instance can access it.
|
||||
Furthermore, every distillery administrator has access.
|
||||
</p>
|
||||
<p>
|
||||
To access the ssh server of this instance, use:
|
||||
</p>
|
||||
<code class="copy">
|
||||
<pre>ssh -J {{ .PanelDomain }}:{{ .Port }} www-data@{{ .Hostname }}</pre>
|
||||
</code>
|
||||
<p>
|
||||
For this to work, configure an ssh key on your <a href="/user/ssh">Personal SSH Page</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="pure-u-1-1">
|
||||
<h2>SSH Keys</h2>
|
||||
<p>
|
||||
This page lists all SSH Keys that have access to this system.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="pure-u-1">
|
||||
<table class="pure-table pure-table-bordered padding">
|
||||
<tbody>
|
||||
{{ range .SSHKeys }}
|
||||
<tr>
|
||||
<td>
|
||||
<code>{{ . }}</code>
|
||||
</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue