The mirror for Zoraxy dev source (ReverseProxy) over hkwtc git
![]() |
9 godzin temu | |
---|---|---|
build | 2 tygodni temu | |
deprecated | 2 miesięcy temu | |
docs | 8 miesięcy temu | |
log | 1 rok temu | |
mod | 9 godzin temu | |
nt61_build | 8 miesięcy temu | |
res | 1 rok temu | |
system | 8 miesięcy temu | |
test | 11 miesięcy temu | |
tmp | 9 miesięcy temu | |
tools | 1 miesiąc temu | |
web | 2 dni temu | |
www | 4 dni temu | |
.gitignore | 1 rok temu | |
LICENSE | 3 lat temu | |
Makefile | 7 miesięcy temu | |
README.md | 3 lat temu | |
accesslist.go | 3 miesięcy temu | |
acme.go | 2 dni temu | |
api.go | 1 tydzień temu | |
autopush.sh | 1 rok temu | |
backup.db | 1 rok temu | |
build.bat | 3 lat temu | |
build.sh | 3 lat temu | |
build_linux.bat | 8 miesięcy temu | |
cert.go | 2 miesięcy temu | |
config.go | 1 tydzień temu | |
def.go | 2 dni temu | |
emails.go | 8 miesięcy temu | |
go.mod | 2 dni temu | |
go.sum | 2 dni temu | |
main.go | 1 miesiąc temu | |
redirect.go | 1 tydzień temu | |
reverseproxy.go | 2 dni temu | |
router.go | 3 miesięcy temu | |
routingrule.go | 9 miesięcy temu | |
sh.exe.stackdump | 1 rok temu | |
start.go | 1 miesiąc temu | |
start.sh | 9 miesięcy temu | |
sys.db_backup | 3 miesięcy temu | |
sys.uuid | 1 rok temu | |
upstreams.go | 2 dni temu | |
vdir.go | 7 miesięcy temu | |
webssh.go | 3 miesięcy temu | |
wrappers.go | 2 miesięcy temu | |
zoraxy | 3 miesięcy temu |
Reverse proxy subservice for ArozOS
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.
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.
There are two mode in the ReverseProxy Subservice
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 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