luci-app-ttyd: use correct http protocol 3847/head
authorRichard Yu <yurichard3839@gmail.com>
Sun, 5 Apr 2020 18:35:03 +0000 (02:35 +0800)
committerRichard Yu <yurichard3839@gmail.com>
Sun, 5 Apr 2020 18:35:03 +0000 (02:35 +0800)
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js

index 26756a369233c3f5f8997281a6178ff330bdc137..965f827720873cb187f8a711c6ed9d4febe19941 100644 (file)
@@ -7,12 +7,13 @@ return view.extend({
                return uci.load('ttyd');
        },
        render: function() {
-               var port = uci.get_first('ttyd', 'ttyd', 'port') || '7681';
+               var port = uci.get_first('ttyd', 'ttyd', 'port') || '7681',
+                       ssl = uci.get_first('ttyd', 'ttyd', 'ssl') || '0';
                if (port === '0')
                        return E('div', { class: 'alert-message warning' },
                                        _('Random ttyd port (port=0) is not supported.<br>Change to a fixed port and try again.'));
                return E('iframe', {
-                       src: window.location.protocol + '//' + window.location.hostname + ':' + port,
+                       src: (ssl === '1' ? 'https' : 'http') + '://' + window.location.hostname + ':' + port,
                        style: 'width: 100%; min-height: 500px; border: none; border-radius: 3px; resize: vertical;'
                });
        },