@@ -70,21 +70,24 @@ Installation is described in [INSTALL](../INSTALL.md).
70
70
` NODE_ORACLEDB_PACKAGE_URL_PATH ` (e.g. "/yourpath/") which must be set
71
71
before running ` make ` .
72
72
73
- You can use ` staging-oracledb-X.Y.Z.tgz ` to host binaries on your
74
- own network . Copy ` staging-oracledb-X.Y.Z.tgz ` , the binary packages
75
- for each desired architectures, and a single SHASUMS256.txt file
76
- (with one line per available binary package) to an HTTPS-enabled web
77
- server. Note if the web server has a self-signed certificate, then
78
- before running `npm install
79
- https://your.example.com/yourpath/staging-oracledb-X.Y.X.tgz` you
80
- may need to set :
73
+ - The ` staging-oracledb-X.Y.Z.tgz ` package can be used to host binaries
74
+ on internal networks . Copy ` staging-oracledb-X.Y.Z.tgz ` , the binary
75
+ packages for each desired architectures, and a single SHASUMS256.txt
76
+ file (with one line per available binary package) to an
77
+ HTTPS-enabled web server to the directory that
78
+ https://your.example.com/yourpath/vX.Y.Z/ resolves to. Note if the
79
+ web server has a self-signed certificate, then you you may need to
80
+ bypass some npm checks :
81
81
82
82
```
83
83
export NODE_TLS_REJECT_UNAUTHORIZED=0
84
84
npm config set strict-ssl false
85
+
86
+ npm install https://your.example.com/yourpath/vX.Y.Z/staging-oracledb-X.Y.X.tgz
85
87
```
86
88
87
- Remember to do ` npm config delete strict-ssl ` when not testing.
89
+ Remember to do ` npm config delete strict-ssl ` and unset the
90
+ environment variable when not testing.
88
91
89
92
- At install time, setting the environment variable
90
93
` NODE_ORACLEDB_TRACE_INSTALL ` to ` TRUE ` will cause ` npm install ` to
0 commit comments