The mirror for Zoraxy dev source (ReverseProxy) over hkwtc git

Toby Chui ebb24903dd Fixed root router not handling access control correctly пре 10 месеци
build 01669242cf auto update script executed пре 1 година
deprecated 064cd93f5d auto update script executed пре 1 година
docs 06b9d8543e Fixed bug in vdir tailing slash missing redirect logic пре 10 месеци
log 8ffe463866 auto update script executed пре 1 година
mod ebb24903dd Fixed root router not handling access control correctly пре 10 месеци
res be9cad5b94 auto update script executed пре 1 година
test 2143837509 Added WebSocket Origin check options пре 1 година
tools 0e5836ebf4 auto update script executed пре 1 година
web 51849bfcaa Updated SMTP UI пре 10 месеци
www 493901b0be Last push before leaving hk пре 1 година
.gitignore 8c28e5dd0a auto update script executed пре 1 година
LICENSE 59fd85fd83 Initial commit пре 3 година
Makefile 10ca798b8f auto update script executed пре 1 година
README.md 800854dfd1 auto update script executed пре 3 година
accesslist.go 1052ece308 Completed hosts base access rules пре 11 месеци
acme.go 6da71b3bb8 Fixed acme renew cert store not reloaded bug пре 10 месеци
api.go 818b631d50 Finalized alias implementation пре 11 месеци
autopush.sh e6d5a2bc90 Added new autopush пре 1 година
backup.db bf3de65404 auto update script executed пре 1 година
build.bat 5150128f12 init пре 3 година
build.sh 5150128f12 init пре 3 година
cert.go 1afe4c1566 auto update script executed пре 1 година
config.go 70400dd3e4 auto update script executed пре 1 година
emails.go 51849bfcaa Updated SMTP UI пре 10 месеци
go.mod 982e3cf878 Updated version no and check for empty domain пре 11 месеци
go.sum 982e3cf878 Updated version no and check for empty domain пре 11 месеци
main.go cad98f2326 Added mdns name support пре 10 месеци
redirect.go e90a89715d Added regex support for redirect пре 11 месеци
reverseproxy.go 818b631d50 Finalized alias implementation пре 11 месеци
router.go 1afe4c1566 auto update script executed пре 1 година
routingrule.go d0852b7f5f auto update script executed пре 1 година
sh.exe.stackdump d1962023f9 auto update script executed пре 1 година
start.go cad98f2326 Added mdns name support пре 10 месеци
sys.db_backup d89ec0c136 auto update script executed пре 1 година
sys.uuid 3090893776 auto update script executed пре 1 година
vdir.go add0600258 auto update script executed пре 1 година
webssh.go 3090893776 auto update script executed пре 1 година
wrappers.go 497983a122 auto update script executed пре 1 година

README.md

ReverseProxy

Reverse proxy subservice for ArozOS

Install

Git clone this inside the subservice folder of ArozOS, build it and start it up in ArozOS subservice menu.

You can also use it separately as a really basic reverse proxy server that server website based on domain / virtual directories. You can also add another load balancer in front of multiple reverse proxy server nodes if it is necessary in your case.

Build

Requirement: Go 1.16 or above

cd ~/arozos/subservices
git clone {this_repo}
cd ReverseProxy
./build.sh

To start the module, make sure .disabled file does not exists and start arozos system. You should be able to see a new module named "ReverseProxy" pop up in the start menu.

Usage

Proxy Modes

There are two mode in the ReverseProxy Subservice

  1. vdir mode (Virtual Dirctories)
  2. subd mode (Subdomain Proxying Mode)

Vdir mode proxy web request based on the virtual directories given in the request URL. For example, when configured to redirect /example to example.com, any visits to {your_domain}/example will be proxied to example.com.

Subd mode proxy web request based on sub-domain exists in the request URL. For example, when configured to redirect example.localhost to example.com, any visits that includes example.localhost (e.g. example.localhost/page1) will be proxied to example.com (e.g. example.com/page1)

Root Proxy

Root proxy is the main proxy destination where if all proxy root name did not match, the request will be proxied to this request. If you are working with ArozOS system in default configuration, you can set this to localhost:8080 for any unknown request to be handled by the host ArozOS system