vpanel-stack/panel/ui/vhost/vhosts.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2022-07-01 15:24:26 -07:00
<include href="header.html" />
2022-08-31 14:28:20 -07:00
<check if="isset(@vhosts_array)">
<true>
<table>
2022-07-01 15:24:26 -07:00
<tr>
2022-08-31 14:28:20 -07:00
<th>Website</th>
<th>Username</th>
<th>Status</th>
2022-07-01 15:24:26 -07:00
</tr>
2022-08-31 14:28:20 -07:00
<repeat group="{{ @vhosts_array }}" value="{{ @vhost_domain }}">
<tr>
2023-06-19 11:53:16 -07:00
<td><a href="{{@BASE}}/Websites/{{ @vhost_domain.virtualhost }}">{{ @vhost_domain.virtualhost }}</a></td>
<td><a href="{{@BASE}}/Users/{{ @vhost_domain.username }}">{{ @vhost_domain.username }}</a></td>
2022-08-31 14:28:20 -07:00
<td>{{ @vhost_domain.status }}</td>
</tr>
</repeat>
</table>
<p>
Select a <b>Website</b> name above for more details and options.<br>
<b>Username</b> is the system username that owns the website files.<br>
<b>Config</b> is the Apache server Macro Virtualhost config currently set for the site.<br>
<b>Status</b> can be used to disable a site without deleting any files or other configs.<br>
</p>
</true>
<false>
<p>There are no website domains on this server.</p>
</false>
</check>
2022-07-01 15:24:26 -07:00
<p>
2023-03-30 10:15:11 -07:00
<a href="{{@NAV.fullpath}}/Add">Add new Website form</a>
2022-07-01 15:24:26 -07:00
</p>
<include href="footer.html" />