no vnc site
This commit is contained in:
parent
89f9ac0016
commit
fcfc543678
|
|
@ -0,0 +1,6 @@
|
||||||
|
FROM nginx:latest
|
||||||
|
COPY console.html /usr/share/nginx/html/console/console.html
|
||||||
|
COPY console_lite.html /usr/share/nginx/html/console/console_lite.html
|
||||||
|
COPY core /usr/share/nginx/html/console/core
|
||||||
|
COPY app /usr/share/nginx/html/console/app
|
||||||
|
COPY vendor /usr/share/nginx/html/console/vendor
|
||||||
|
|
@ -0,0 +1,315 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" class="noVNC_loading">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
noVNC example: simple example using default UI
|
||||||
|
Copyright (C) 2019 The noVNC Authors
|
||||||
|
noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
|
||||||
|
This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
|
||||||
|
|
||||||
|
Connect parameters are provided in query string:
|
||||||
|
http://example.com/?host=HOST&port=PORT&encrypt=1
|
||||||
|
or the fragment:
|
||||||
|
http://example.com/#host=HOST&port=PORT&encrypt=1
|
||||||
|
-->
|
||||||
|
<title>noVNC</title>
|
||||||
|
|
||||||
|
<meta charset="utf-8">
|
||||||
|
|
||||||
|
<!-- Icons (see app/images/icons/Makefile for what the sizes are for) -->
|
||||||
|
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
|
||||||
|
<link rel="icon" sizes="24x24" type="image/png" href="app/images/icons/novnc-24x24.png">
|
||||||
|
<link rel="icon" sizes="32x32" type="image/png" href="app/images/icons/novnc-32x32.png">
|
||||||
|
<link rel="icon" sizes="48x48" type="image/png" href="app/images/icons/novnc-48x48.png">
|
||||||
|
<link rel="icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
|
||||||
|
<link rel="icon" sizes="64x64" type="image/png" href="app/images/icons/novnc-64x64.png">
|
||||||
|
<link rel="icon" sizes="72x72" type="image/png" href="app/images/icons/novnc-72x72.png">
|
||||||
|
<link rel="icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
|
||||||
|
<link rel="icon" sizes="96x96" type="image/png" href="app/images/icons/novnc-96x96.png">
|
||||||
|
<link rel="icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
|
||||||
|
<link rel="icon" sizes="144x144" type="image/png" href="app/images/icons/novnc-144x144.png">
|
||||||
|
<link rel="icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
|
||||||
|
<link rel="icon" sizes="192x192" type="image/png" href="app/images/icons/novnc-192x192.png">
|
||||||
|
<!-- Firefox currently mishandles SVG, see #1419039
|
||||||
|
<link rel="icon" sizes="any" type="image/svg+xml" href="app/images/icons/novnc-icon.svg">
|
||||||
|
-->
|
||||||
|
<!-- Repeated last so that legacy handling will pick this -->
|
||||||
|
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
|
||||||
|
|
||||||
|
<!-- Apple iOS Safari settings -->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<!-- Home Screen Icons (favourites and bookmarks use the normal icons) -->
|
||||||
|
<link rel="apple-touch-icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
|
||||||
|
|
||||||
|
<!-- Stylesheets -->
|
||||||
|
<link rel="stylesheet" href="app/styles/base.css">
|
||||||
|
|
||||||
|
<script src="app/error-handler.js"></script>
|
||||||
|
<script type="module" crossorigin="anonymous" src="app/ui.js"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="noVNC_fallback_error" class="noVNC_center">
|
||||||
|
<div>
|
||||||
|
<div>noVNC encountered an error:</div>
|
||||||
|
<br>
|
||||||
|
<div id="noVNC_fallback_errormsg"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- noVNC Control Bar -->
|
||||||
|
<div id="noVNC_control_bar_anchor" class="noVNC_vcenter">
|
||||||
|
|
||||||
|
<div id="noVNC_control_bar">
|
||||||
|
<div id="noVNC_control_bar_handle" title="Hide/Show the control bar"><div></div></div>
|
||||||
|
|
||||||
|
<div class="noVNC_scroll">
|
||||||
|
|
||||||
|
<h1 class="noVNC_logo" translate="no"><span>no</span><br>VNC</h1>
|
||||||
|
|
||||||
|
<!-- Drag/Pan the viewport -->
|
||||||
|
<input type="image" alt="Drag" src="app/images/drag.svg"
|
||||||
|
id="noVNC_view_drag_button" class="noVNC_button noVNC_hidden"
|
||||||
|
title="Move/Drag Viewport">
|
||||||
|
|
||||||
|
<!--noVNC Touch Device only buttons-->
|
||||||
|
<div id="noVNC_mobile_buttons">
|
||||||
|
<input type="image" alt="Keyboard" src="app/images/keyboard.svg"
|
||||||
|
id="noVNC_keyboard_button" class="noVNC_button" title="Show Keyboard">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Extra manual keys -->
|
||||||
|
<input type="image" alt="Extra keys" src="app/images/toggleextrakeys.svg"
|
||||||
|
id="noVNC_toggle_extra_keys_button" class="noVNC_button"
|
||||||
|
title="Show Extra Keys">
|
||||||
|
<div class="noVNC_vcenter">
|
||||||
|
<div id="noVNC_modifiers" class="noVNC_panel">
|
||||||
|
<input type="image" alt="Ctrl" src="app/images/ctrl.svg"
|
||||||
|
id="noVNC_toggle_ctrl_button" class="noVNC_button"
|
||||||
|
title="Toggle Ctrl">
|
||||||
|
<input type="image" alt="Alt" src="app/images/alt.svg"
|
||||||
|
id="noVNC_toggle_alt_button" class="noVNC_button"
|
||||||
|
title="Toggle Alt">
|
||||||
|
<input type="image" alt="Windows" src="app/images/windows.svg"
|
||||||
|
id="noVNC_toggle_windows_button" class="noVNC_button"
|
||||||
|
title="Toggle Windows">
|
||||||
|
<input type="image" alt="Tab" src="app/images/tab.svg"
|
||||||
|
id="noVNC_send_tab_button" class="noVNC_button"
|
||||||
|
title="Send Tab">
|
||||||
|
<input type="image" alt="Esc" src="app/images/esc.svg"
|
||||||
|
id="noVNC_send_esc_button" class="noVNC_button"
|
||||||
|
title="Send Escape">
|
||||||
|
<input type="image" alt="Ctrl+Alt+Del" src="app/images/ctrlaltdel.svg"
|
||||||
|
id="noVNC_send_ctrl_alt_del_button" class="noVNC_button"
|
||||||
|
title="Send Ctrl-Alt-Del">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Shutdown/Reboot -->
|
||||||
|
<input type="image" alt="Shutdown/Reboot" src="app/images/power.svg"
|
||||||
|
id="noVNC_power_button" class="noVNC_button"
|
||||||
|
title="Shutdown/Reboot...">
|
||||||
|
<div class="noVNC_vcenter">
|
||||||
|
<div id="noVNC_power" class="noVNC_panel">
|
||||||
|
<div class="noVNC_heading">
|
||||||
|
<img alt="" src="app/images/power.svg"> Power
|
||||||
|
</div>
|
||||||
|
<input type="button" id="noVNC_shutdown_button" value="Shutdown">
|
||||||
|
<input type="button" id="noVNC_reboot_button" value="Reboot">
|
||||||
|
<input type="button" id="noVNC_reset_button" value="Reset">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Clipboard -->
|
||||||
|
<input type="image" alt="Clipboard" src="app/images/clipboard.svg"
|
||||||
|
id="noVNC_clipboard_button" class="noVNC_button"
|
||||||
|
title="Clipboard">
|
||||||
|
<div class="noVNC_vcenter">
|
||||||
|
<div id="noVNC_clipboard" class="noVNC_panel">
|
||||||
|
<div class="noVNC_heading">
|
||||||
|
<img alt="" src="app/images/clipboard.svg"> Clipboard
|
||||||
|
</div>
|
||||||
|
<textarea id="noVNC_clipboard_text" rows=5></textarea>
|
||||||
|
<br>
|
||||||
|
<input id="noVNC_clipboard_clear_button" type="button"
|
||||||
|
value="Clear" class="noVNC_submit">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Toggle fullscreen -->
|
||||||
|
<input type="image" alt="Fullscreen" src="app/images/fullscreen.svg"
|
||||||
|
id="noVNC_fullscreen_button" class="noVNC_button noVNC_hidden"
|
||||||
|
title="Fullscreen">
|
||||||
|
|
||||||
|
<!-- Settings -->
|
||||||
|
<input type="image" alt="Settings" src="app/images/settings.svg"
|
||||||
|
id="noVNC_settings_button" class="noVNC_button"
|
||||||
|
title="Settings">
|
||||||
|
<div class="noVNC_vcenter">
|
||||||
|
<div id="noVNC_settings" class="noVNC_panel">
|
||||||
|
<ul>
|
||||||
|
<li class="noVNC_heading">
|
||||||
|
<img alt="" src="app/images/settings.svg"> Settings
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_shared" type="checkbox"> Shared Mode</label>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_view_only" type="checkbox"> View Only</label>
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_view_clip" type="checkbox"> Clip to Window</label>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_resize">Scaling Mode:</label>
|
||||||
|
<select id="noVNC_setting_resize" name="vncResize">
|
||||||
|
<option value="off">None</option>
|
||||||
|
<option value="scale">Local Scaling</option>
|
||||||
|
<option value="remote">Remote Resizing</option>
|
||||||
|
</select>
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<li>
|
||||||
|
<div class="noVNC_expander">Advanced</div>
|
||||||
|
<div><ul>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_quality">Quality:</label>
|
||||||
|
<input id="noVNC_setting_quality" type="range" min="0" max="9" value="6">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_compression">Compression level:</label>
|
||||||
|
<input id="noVNC_setting_compression" type="range" min="0" max="9" value="2">
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_repeaterID">Repeater ID:</label>
|
||||||
|
<input id="noVNC_setting_repeaterID" type="text" value="">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="noVNC_expander">WebSocket</div>
|
||||||
|
<div><ul>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_encrypt" type="checkbox"> Encrypt</label>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_host">Host:</label>
|
||||||
|
<input id="noVNC_setting_host">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_port">Port:</label>
|
||||||
|
<input id="noVNC_setting_port" type="number">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_path">Path:</label>
|
||||||
|
<input id="noVNC_setting_path" type="text" value="websockify">
|
||||||
|
</li>
|
||||||
|
</ul></div>
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_reconnect" type="checkbox"> Automatic Reconnect</label>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="noVNC_setting_reconnect_delay">Reconnect Delay (ms):</label>
|
||||||
|
<input id="noVNC_setting_reconnect_delay" type="number">
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<li>
|
||||||
|
<label><input id="noVNC_setting_show_dot" type="checkbox"> Show Dot when No Cursor</label>
|
||||||
|
</li>
|
||||||
|
<li><hr></li>
|
||||||
|
<!-- Logging selection dropdown -->
|
||||||
|
<li>
|
||||||
|
<label>Logging:
|
||||||
|
<select id="noVNC_setting_logging" name="vncLogging">
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</li>
|
||||||
|
</ul></div>
|
||||||
|
</li>
|
||||||
|
<li class="noVNC_version_separator"><hr></li>
|
||||||
|
<li class="noVNC_version_wrapper">
|
||||||
|
<span>Version:</span>
|
||||||
|
<span class="noVNC_version"></span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Connection Controls -->
|
||||||
|
<input type="image" alt="Disconnect" src="app/images/disconnect.svg"
|
||||||
|
id="noVNC_disconnect_button" class="noVNC_button"
|
||||||
|
title="Disconnect">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="noVNC_control_bar_hint"></div>
|
||||||
|
|
||||||
|
</div> <!-- End of noVNC_control_bar -->
|
||||||
|
|
||||||
|
<!-- Status Dialog -->
|
||||||
|
<div id="noVNC_status"></div>
|
||||||
|
|
||||||
|
<!-- Connect button -->
|
||||||
|
<div class="noVNC_center">
|
||||||
|
<div id="noVNC_connect_dlg">
|
||||||
|
<div class="noVNC_logo" translate="no"><span>no</span>VNC</div>
|
||||||
|
<div id="noVNC_connect_button"><div>
|
||||||
|
<img alt="" src="app/images/connect.svg"> Connect
|
||||||
|
</div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Password Dialog -->
|
||||||
|
<div class="noVNC_center noVNC_connect_layer">
|
||||||
|
<div id="noVNC_credentials_dlg" class="noVNC_panel"><form>
|
||||||
|
<ul>
|
||||||
|
<li id="noVNC_username_block">
|
||||||
|
<label>Username:</label>
|
||||||
|
<input id="noVNC_username_input">
|
||||||
|
</li>
|
||||||
|
<li id="noVNC_password_block">
|
||||||
|
<label>Password:</label>
|
||||||
|
<input id="noVNC_password_input" type="password">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<input id="noVNC_credentials_button" type="submit" value="Send Credentials" class="noVNC_submit">
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</form></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Transition Screens -->
|
||||||
|
<div id="noVNC_transition">
|
||||||
|
<div id="noVNC_transition_text"></div>
|
||||||
|
<div>
|
||||||
|
<input type="button" id="noVNC_cancel_reconnect_button" value="Cancel" class="noVNC_submit">
|
||||||
|
</div>
|
||||||
|
<div class="noVNC_spinner"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- This is where the RFB elements will attach -->
|
||||||
|
<div id="noVNC_container">
|
||||||
|
<!-- Note that Google Chrome on Android doesn't respect any of these,
|
||||||
|
html attributes which attempt to disable text suggestions on the
|
||||||
|
on-screen keyboard. Let's hope Chrome implements the ime-mode
|
||||||
|
style for example -->
|
||||||
|
<textarea id="noVNC_keyboardinput" autocapitalize="off"
|
||||||
|
autocomplete="off" spellcheck="false" tabindex="-1"></textarea>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<audio id="noVNC_bell">
|
||||||
|
<source src="app/sounds/bell.oga" type="audio/ogg">
|
||||||
|
<source src="app/sounds/bell.mp3" type="audio/mpeg">
|
||||||
|
</audio>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,182 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
noVNC example: lightweight example using minimal UI and features
|
||||||
|
|
||||||
|
This is a self-contained file which doesn't import WebUtil or external CSS.
|
||||||
|
|
||||||
|
Copyright (C) 2019 The noVNC Authors
|
||||||
|
noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
|
||||||
|
This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
|
||||||
|
|
||||||
|
Connect parameters are provided in query string:
|
||||||
|
http://example.com/?host=HOST&port=PORT&scale=true
|
||||||
|
-->
|
||||||
|
<title>noVNC</title>
|
||||||
|
|
||||||
|
<meta charset="utf-8">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background-color: dimgrey;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
html {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#top_bar {
|
||||||
|
background-color: #6e84a3;
|
||||||
|
color: white;
|
||||||
|
font: bold 12px Helvetica;
|
||||||
|
padding: 6px 5px 4px 5px;
|
||||||
|
border-bottom: 1px outset;
|
||||||
|
}
|
||||||
|
#status {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#sendCtrlAltDelButton {
|
||||||
|
position: fixed;
|
||||||
|
top: 0px;
|
||||||
|
right: 0px;
|
||||||
|
border: 1px outset;
|
||||||
|
padding: 5px 5px 4px 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#screen {
|
||||||
|
flex: 1; /* fill remaining space */
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script type="module" crossorigin="anonymous">
|
||||||
|
// RFB holds the API to connect and communicate with a VNC server
|
||||||
|
import RFB from './core/rfb.js';
|
||||||
|
|
||||||
|
let rfb;
|
||||||
|
let desktopName;
|
||||||
|
|
||||||
|
// When this function is called we have
|
||||||
|
// successfully connected to a server
|
||||||
|
function connectedToServer(e) {
|
||||||
|
status("Connected to " + desktopName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// This function is called when we are disconnected
|
||||||
|
function disconnectedFromServer(e) {
|
||||||
|
if (e.detail.clean) {
|
||||||
|
status("Disconnected");
|
||||||
|
} else {
|
||||||
|
status("Something went wrong, connection is closed");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When this function is called, the server requires
|
||||||
|
// credentials to authenticate
|
||||||
|
function credentialsAreRequired(e) {
|
||||||
|
const password = prompt("Password Required:");
|
||||||
|
rfb.sendCredentials({ password: password });
|
||||||
|
}
|
||||||
|
|
||||||
|
// When this function is called we have received
|
||||||
|
// a desktop name from the server
|
||||||
|
function updateDesktopName(e) {
|
||||||
|
desktopName = e.detail.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Since most operating systems will catch Ctrl+Alt+Del
|
||||||
|
// before they get a chance to be intercepted by the browser,
|
||||||
|
// we provide a way to emulate this key sequence.
|
||||||
|
function sendCtrlAltDel() {
|
||||||
|
rfb.sendCtrlAltDel();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show a status text in the top bar
|
||||||
|
function status(text) {
|
||||||
|
document.getElementById('status').textContent = text;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This function extracts the value of one variable from the
|
||||||
|
// query string. If the variable isn't defined in the URL
|
||||||
|
// it returns the default value instead.
|
||||||
|
function readQueryVariable(name, defaultValue) {
|
||||||
|
// A URL with a query parameter can look like this:
|
||||||
|
// https://www.example.com?myqueryparam=myvalue
|
||||||
|
//
|
||||||
|
// Note that we use location.href instead of location.search
|
||||||
|
// because Firefox < 53 has a bug w.r.t location.search
|
||||||
|
const re = new RegExp('.*[?&]' + name + '=([^&#]*)'),
|
||||||
|
match = document.location.href.match(re);
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
// We have to decode the URL since want the cleartext value
|
||||||
|
return decodeURIComponent(match[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return defaultValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById('sendCtrlAltDelButton')
|
||||||
|
.onclick = sendCtrlAltDel;
|
||||||
|
|
||||||
|
// Read parameters specified in the URL query string
|
||||||
|
// By default, use the host and port of server that served this file
|
||||||
|
const host = readQueryVariable('host', window.location.hostname);
|
||||||
|
let port = readQueryVariable('port', window.location.port);
|
||||||
|
const password = readQueryVariable('password');
|
||||||
|
const path = readQueryVariable('path', 'websockify');
|
||||||
|
|
||||||
|
// | | | | | |
|
||||||
|
// | | | Connect | | |
|
||||||
|
// v v v v v v
|
||||||
|
|
||||||
|
status("Connecting");
|
||||||
|
|
||||||
|
// Build the websocket URL used to connect
|
||||||
|
let url;
|
||||||
|
if (window.location.protocol === "https:") {
|
||||||
|
url = 'wss';
|
||||||
|
} else {
|
||||||
|
url = 'ws';
|
||||||
|
}
|
||||||
|
url += '://' + host;
|
||||||
|
if(port) {
|
||||||
|
url += ':' + port;
|
||||||
|
}
|
||||||
|
url += '/' + path;
|
||||||
|
|
||||||
|
// Creating a new RFB object will start a new connection
|
||||||
|
rfb = new RFB(document.getElementById('screen'), url,
|
||||||
|
{ credentials: { password: password } });
|
||||||
|
|
||||||
|
// Add listeners to important events from the RFB module
|
||||||
|
rfb.addEventListener("connect", connectedToServer);
|
||||||
|
rfb.addEventListener("disconnect", disconnectedFromServer);
|
||||||
|
rfb.addEventListener("credentialsrequired", credentialsAreRequired);
|
||||||
|
rfb.addEventListener("desktopname", updateDesktopName);
|
||||||
|
|
||||||
|
// Set parameters that can be changed on an active connection
|
||||||
|
rfb.viewOnly = readQueryVariable('view_only', false);
|
||||||
|
rfb.scaleViewport = readQueryVariable('scale', false);
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="top_bar">
|
||||||
|
<div id="status">Loading</div>
|
||||||
|
<div id="sendCtrlAltDelButton">Send CtrlAltDel</div>
|
||||||
|
</div>
|
||||||
|
<div id="screen">
|
||||||
|
<!-- This is where the remote screen will appear -->
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue