documents

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

ssh-gate.md (602B)


      1 # ref
      2 - https://zenn.dev/jij_inc/articles/659fe35813b940
      3 
      4 # zero trust
      5 ## add public host name
      6 ## create Access Application
      7 - apply pub hostname that you decide just a second ago
      8 - you can set policy you like
      9 - NOT SETTING AS A BROUWSER RENDERING!!!!
     10 # client
     11 ## Install cloudflared (not WARP)
     12 ## setting up host proxy to ssh
     13 `.ssh/config`に
     14 ```
     15 Host ssh-server
     16     HostName subdomain.domain.tld
     17     ProxyCommand "C:\Program Files (x86)\cloudflared\cloudflared.exe" access ssh --hostname %h
     18 ```
     19 # you can ssh for your ssh server vir cloudflare tunnel !!! 
     20 # like this 
     21 ```
     22 ssh username@ssh-server
     23 ```