Posted On March 29, 2019

HAProxy Example for SSH & OpenVNP forwarding

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux >> HAProxy Example for SSH & OpenVNP forwarding
# Source: https://limbenjamin.com/articles/running-https-ssh-vpn-on-port-443.html
 
global
tune.ssl.default-dh-param 2048
 
defaults
timeout connect 5000
timeout client 50000
timeout server 50000
 
frontend ssl
mode tcp
bind 0.0.0.0:443
tcp-request inspect-delay 5s
tcp-request content accept if HTTP
use_backend ssh if { payload(0,7) -m bin 5353482d322e30 }
use_backend main-ssl if { req.ssl_hello_type 1 }
default_backend openvpn
 
frontend main
bind 127.0.0.1:443 ssl crt /some/folder/cert.pem accept-proxy
mode http
option forwardfor
default_backend webserver
 
frontend http
bind 0.0.0.0:80
reqadd X-Forwarded-Proto:\ http
default_backend webserver
 
backend main-ssl
mode tcp
server main-ssl 127.0.0.1:443 send-proxy
 
backend openvpn
mode tcp
timeout server 2h
server openvpn-localhost 127.0.0.1:1193
 
backend ssh
mode tcp
timeout server 2h
server ssh-localhost 127.0.0.1:22
 
backend webserver
mode http
option forwardfor
redirect scheme https code 301 if !{ ssl_fc }
server webserver-localhost 127.0.0.1:81

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Test LDAPS Connection

Function testLdap { [CmdletBinding()] Param( [Parameter(Position=0,ValueFromPipeline=$true)]$dcs=$($ENV:LOGONSERVER -replace '\\',''), [Parameter(Position=1,ValueFromPipeline=$true)]$port='636' ) $ErrorActionPreference = "Stop" $results =…

PowerShell: connectWinRM Function to Create New-PSSession

This reusable function may be included into PoSh scripts for better connection toward Windows machines…

WordPress Multi-site with Single Sign On (SSO)

Step 1: Login Access the correct environment using wp_admin login with the DevOps standard password:…
Other project: DragonCoin.com