-
Notifications
You must be signed in to change notification settings - Fork 40
Description
It looks like this is abandonware, but I'll say that fTelnetProxy is old now, and the SSL functions it uses are incompatible with modern browsers.
Also, the Visual Studio solution for it seems to be incomplete. It couldn't find some files/directories and wouldn't build.
(It also uses a .net framework that's so old I didn't have it installed, and I installed it, but for some reason VS still complained that I didn't have the necessary framework.)
Oh yeah, and the links to the binaries for fTelnetClient no longer work; fortunately, I already had the binaries from years ago.
It would be okay if there's a newer and better HTML<->telnet interface out there--is there one?
By the way, the way I got around the SSL functions being outdated, with the help of claude.ai, was with this nginx clause:
server {
listen 16668 ssl;
server_name inhahe.com;
ssl_certificate /etc/letsencrypt/live/inhahe.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/inhahe.com/privkey.pem;
location / {
proxy_pass http://127.0.0.1:16669;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
}
Where 16669 is the port fTelnetProxy is set to listen to, and 16668 is the port the fTelnet HTML is set to target.