Skip to content

Instantly share code, notes, and snippets.

@VMuliadi
Last active July 13, 2022 16:28
Show Gist options
  • Save VMuliadi/c8072f16aa68bb1a64cf770116434ea6 to your computer and use it in GitHub Desktop.
Save VMuliadi/c8072f16aa68bb1a64cf770116434ea6 to your computer and use it in GitHub Desktop.
python script to generate haproxy for your ngrok application

NGROK HAProxy Generator

NGROK HAProxy Generator is a tool to generate HAProxy config follows your ngrok tunnel address. I created this script to allow my devices connected to the services that deployed in my device. Since I didn't have a PRO account, I need to create a workaround to make the tunnel easy to remember.

Pre-requisites

  • python3.9
  • haproxy

How to Use

$ pip3 install ngrok-api argparse --users`
$ NGROK_AUTH_TOKEN={{ NGROK_API_TOKEN }} /usr/bin/python3.9 generator.py'
#!/usr/bin/python3
import argparse
import ngrok
from os import getenv as environ
# ngrok api configuration
ngrok_api_url = "https://api.ngrok.com"
ngrok_auth_token = environ("NGROK_AUTH_TOKEN")
ngrok_client = ngrok.Client(ngrok_auth_token)
# argument parser
parser = argparse.ArgumentParser(description="Update haproxy based ngrok config")
parser.add_argument("-c",
"--config", action="store",
default="/etc/haproxy/haproxy.cfg",
help="HAProxy config path location",
required=False, type=str)
parser.add_argument("-s",
"--source", action="store",
default="tunnel.cfg.j2",
help="Source template file",
required=False, type=str)
parser.add_argument("-n",
"--name", action="store",
default="tunnel",
help="tunnel name that you want to activate",
required=False, type=str)
args = parser.parse_args()
def get_tunnels() -> list:
tunnels=list()
for tunnel in ngrok_client.tunnels.list():
tunnels.append(tunnel.id)
return tunnels
def get_tunnel_addr(tunnel_id: int) -> (str, int):
tunnel = ngrok_client.tunnels.get(tunnel_id)
tunnel_addr = tunnel.public_url.split("tcp://")[1]
tunnel_addr = tunnel_addr.split(":")
return tunnel_addr[0], int(tunnel_addr[1])
def main():
tunnel_name = args.name
get_tunnel_id = get_tunnels()[0]
tunnel_host, tunnel_port = get_tunnel_addr(get_tunnel_id)
from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader("."))
template = env.get_template(args.source)
with open(args.config, "w") as config_file:
config_file.write(template.render(
name=args.name,
host=tunnel_host,
port=tunnel_port
))
if __name__ == "__main__":
main()
global
maxconn 10
defaults
log global
mode tcp
retries 2
timeout client 30m
timeout connect 4s
timeout server 30m
timeout check 5s
listen {{ name }}
bind *:5000
http-check expect status 200
default-server inter 3s fall 3 rise 2 on-marked-down shutdown-sessions
server {{ name }}_server {{ host }}:{{ port }} maxconn 10 check port {{ port }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment