This commit is contained in:
2026-01-07 05:26:56 +09:00
parent c21bbb779f
commit db1c4958ea
6 changed files with 301 additions and 137 deletions

View File

@@ -422,7 +422,7 @@
<div class="connection-info">
<h4>Client Connection Information</h4>
<p>Clients can connect to this room using:</p>
<p><strong>WebSocket URL:</strong> <code>ws://{{ server_host }}:{{ server_port }}/ws/client/{{ room.id }}/{{ room.password }}</code></p>
<p><strong>WebSocket URL:</strong> <code>{{ 'wss' if ssl_enabled else 'ws' }}://{{ server_host }}:{{ server_port }}/ws/client/{{ room.id }}/{{ room.password }}</code></p>
<p><strong>Room ID:</strong> <code>{{ room.id }}</code></p>
<p><strong>Password:</strong> <code>{{ room.password }}</code></p>
</div>