cprox 1.7.4
Install from the command line:
Learn more about npm packages
$ npm install @noblemajo/cprox@1.7.4
Install via package.json:
"@noblemajo/cprox": "1.7.4"
About this version
|
Docker Hub
|
GitHub
|
CProX is an easy to configure static serve, redirect, proxy and load balancing web server.
Please checkout the configuration guide.
Checkout the test.sh
and the start.sh
scripts to understand what you need to think about and how to start the server.
- node v16
- Linus distrubotion
npm i -g cprox
Run as redirect server:
cprox *=REDIRECT:https://start.duckduckgo.com
Run as static file server:
cprox *=STATIC:/var/www/html
Run as proxy server:
cprox *=PROXY:http://127.0.0.1:8080
Help:
cprox -h
- docker cli
- Linus distribution
docker pull majo418/cprox:latest
docker run -it --rm \
-p 80:80 \
-p 443:443 \
-v $(pwd)/certs:/app/certs \
majo418/cprox \
*=REDIRECT:https://start.duckduckgo.com
Help:
docker run -it --rm majo418/cprox -h
-
- 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