ninja-reverse-proxy 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -48,7 +48,8 @@ npm install -g ninja-reverse-proxy
48
48
  ```bash
49
49
  openssl req -x509 -newkey rsa:4096 \
50
50
  -keyout key.pem -out cert.pem \
51
- -days 365 -nodes
51
+ -days 365 -nodes \
52
+ -subj "/CN=localhost"
52
53
  ```
53
54
 
54
55
  ### 3. Create your config file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ninja-reverse-proxy",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A production-grade reverse proxy with load balancing, circuit breaker, sticky sessions, and dynamic service registry.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",