cprox 1.5.2
Install from the command line:
Learn more about npm packages
$ npm install @noblemajo/cprox@1.5.2
Install via package.json:
"@noblemajo/cprox": "1.5.2"
About this version
|
Docker Hub
|
GitHub
|
CProX is easy customizable static, redirct and proxy server.
docker pull majo418/cprox:latest
Checkout the test.sh
and the start.sh
scripts to understand what you need to think about and how to start the server.
- Docker
- Linus distribution
docker run -it --rm \
-p 80:80 \
-p 443:443 \
-e "RULE_1=*=REDIRECT:https://start.duckduckgo.com"
majo418/cprox
You configure the server via rules and environment variables.
https://github.com/majo418/cprox/blob/main/src/env/env.ts
A rule is a key value pair as string that can be set over the environment variables or via the cli process arguments.
Its containers the origin target, rule type and rule target:
<origin>=<type>:<target>
The following rule all requests to the host example.com
on the path /test
to https://youtube.com
:
example.com/test=REDIRECT:https://youtube.com
The following rule redirects all requests on the path /redirect
to https://hub.docker.com
:
*/redirect=REDIRECT:https://hub.docker.com
The following rule provides the static content of the /var/www/html
folder as website if example.com
is the host address:
example.com=STATIC:/var/www/html
The following rule forward localhost
to http://localhost:8080
:
localhost=PROXY:localhost:8080
The following rule forward auth.coreunit.net
to a keycloak docker container in the same network that not publish a port:
auth.coreunit.net=PROXY:keycloak:8080
- localhost/youtube=REDIRECT:https://youtube.com/
- *.localhost=REDIRECT:https://duckduckgo.com/?t=vivaldi&ia=web&q={-2}
- localhost=STATIC:./public
Just pass the rules as arguments to the process:
docker run \
(...) \
majo418/cprox \
<rule1> \
<rule2> \
<rule3>
Or via environment variables via RULE_<n>
where <n>
is the rule number:
docker run \
(...) \
-e "RULE_1=<rule1>" \
-e "RULE_2=<rule2>" \
-e "RULE_3=<rule3>" \
majo418/cprox
The rules support variables.
A variables is always a number that is never 0.
Numbers greater than 0 represent a part of the requested path splitted by /
.
Numbers lesser than 0 represent a part of the requested domain splitted by .
.
If the requested address is test.coreunit.net/test/test2/test3
you can get the following variables:
-
{-3}
= "test" -
{-2}
= "coreunit" -
{-1}
= "net" -
{1}
= "test" -
{2}
= "test2" -
{3}
= "test3"
That also works with wildcards!
If the requested address is *.test.coreunit.net
you can get the following variables:
-
{-4}
= -
{-3}
= "test" -
{-2}
= "coreunit" -
{-1}
= "net"
You can use the variables in the value part of the rules like that:
*.localhost=REDIRECT:https://duckduckgo.com/?q={-2}
If you request some_test.localhost
you will get redirected to https://duckduckgo.com/?q=some_test
.
Same with paths:
localhost/*=REDIRECT:https://duckduckgo.com/?q={1}
If you request localhost/some_value
you will get redirected to https://duckduckgo.com/?q=some_value
.
That also works with proxy and static rules!
Here is a example with docker containers:
*.con.localhost=PROXY:c_{-3}:8080
If you request mynginx.con.localhost
the request get proxied to c_mynginx:8080
.
Here some rule examples:
- "localhost/youtube=REDIRECT:https://youtube.com/"
- "*.localhost=REDIRECT:https://duckduckgo.com/?q={-2}"
- "localhost=STATIC:./public"
- "localhost/test=STATIC:./dist"
- "*.cprox.coreunit.net=PROXY:cprox_{-4}:8080"
- "*.test.i.coreunit.net=PROXY:test_{-4}"
- "coreunit.net=STATIC:/var/www/main"
- "auth.coreunit.net=PROXY:keycloak_container:8080"
- "majo.coreunit.net=REDIRECT:https://github.com/majo418"
- "sysdev.coreunit.net=REDIRECT:https://github.com/sysdev"
- "cprox.coreunit.net=STATIC:/var/www/cprox"
- "i.coreunit.net=STATIC:/var/www/intern"
- "i.coreunit.net/certs=STATIC:/home/netde/certs"
- "discord.coreunit.net=REDIRECT:https://discord.gg/pwHNaHRa9W"
- "teamspeak.coreunit.net=REDIRECT:ts3server://coreunit.net"
- "github.coreunit.net=REDIRECT:https://github.com/coreunitnet"
- "/.well-known=STATIC:/home/netde/certs/.well-known"
- "/test=STATIC:/home/netde/certs/.well-known"
- "/qweqwesdsdddsdsdsdsde=STATIC:/home/netde/certs/.well-known"
docker run -it --rm \
--name cprox \
-e "RULE_1=stat.coreunit.net=STATIC:/var/www/html" \
-v /var/www/html:/var/www/html \
-p 8443:443 \
majo418/cprox
docker run -it --rm \
--name cprox \
-e "VERBOSE=true" \
-e "PRODUCTION=true" \
-e "RULE_1=static.test.net=STATIC:/var/www/html" \
-e "RULE_2=redirect.test.net=REDIRECT:http://target.test2.net" \
-e "RULE_1=proxy.test.net=PROXY:http://my.target.test2.net:8080" \
-e "SELF_SINGED_DOMAIN=test.net" \ # -e "SELF_SINGED_IF_NEEDED=false" to disable self singed certs
-e "CERT_PATH=/app/certs/pub.pem" \
-e "KEY_PATH=/app/certs/key.pem" \
-e "CA_PATH=/app/certs/chain.pem" \
-v "/var/www/html:/var/www/html" \
-v "/home/certs:/app/certs" \
-p 443:443 \
-p 80:80 \
majo418/cprox
The npm scripts are made for linux but can also work on mac and windows.
You can run npm scripts in the project folder like this:
npm run <scriptname>
Here is an example:
npm run test
You can find all npm scripts in the package.json
file.
This is a list of the most important npm scripts:
- test // test the app
- build // build the app
- exec // run the app
- start // build and run the app
Like this example you can run all npm scripts in watch mode:
npm run start:watch
-
- fork the project
-
- implement your idea
-
- create a pull/merge request
// please create seperated forks for different kind of featues/ideas/structure changes/implementations
cya ;3
by majo418