1
0
mirror of https://github.com/nxshock/gonx.git synced 2025-01-18 00:51:10 +05:00
2023-12-28 20:01:36 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 20:01:36 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:00:04 +05:00
2023-12-28 16:15:54 +05:00
2023-12-28 16:00:04 +05:00

gonx

Simple reverse proxy server.

Features:

  • Simple TCP redirection
  • Simple static file server

Usage

  1. Install package

  2. Edit config in /etc/gonx.conf

  3. Start application with systemd:

    systemctl start gonx.service

Config example

LogLevel = "DEBUG"                         # Log level (DEBUG, INFO, WARN, ERROR)
TlsKeysDir = "/etc/letsencrypt/live"       # Path to TLS-certificates generated by Certbot
TlsListenAddr = ":443"                     # TLS listen address
HttpListenAddr = ":80"                     # HTTP listen address
AcmeChallengePath = "/var/lib/letsencrypt" # Path for ACME challenge files

# Map of hostname -> redirect URL
[TLS]
"git.host.com" = "tcp://127.0.0.1:8001" # TCP redirect
"www.host.com" = "file:///srv/http"     # simple static file server from `/srv/http`
Description
Simple reverse proxy server
Readme MIT 43 KiB
Languages
Go 92%
Shell 8%