Download Windows client и скопировать в C:\cloudflared\

Обновить

cloudflared update

cloudflared version

Создать тоннель

https://dash.cloudflare.com/ > Networking > Tunnels

Подключение по SSH

cloudflared.exe access tcp --hostname ssh.eas.pp.ua --listener localhost:2222

ssh user@localhost -p 2222

Подключение по RDP

cloudflared.exe access tcp --hostname rdp.eas.pp.ua --listener localhost:33890

mstsc /v:127.0.0.1:33890 /f

Скрипт connect_rdp.bat

@echo off
start "CF Tunnel RDP" C:\cloudflared\cloudflared.exe access tcp --hostname rdp.eas.pp.ua --listener localhost:33890
timeout /t 3
mstsc /v:127.0.0.1:33890 /f

Nginx

отображение файлов

  root /mnt/var/personal;

        location / {
charset utf-8;
source_charset utf-8;
   autoindex on;
    autoindex_exact_size off;   # human-readable размеры (K/M/G)
    autoindex_localtime on;     # локальное время вместо GMT
        }