Spaces:
Paused
Paused
Update entrypoint.sh
Browse files- entrypoint.sh +2 -2
entrypoint.sh
CHANGED
|
@@ -9,8 +9,8 @@ openssl genpkey -algorithm RSA -out private.key
|
|
| 9 |
openssl req -new -key private.key -out csr.pem -subj "/CN=localhost"
|
| 10 |
openssl req -x509 -days 365 -key private.key -in csr.pem -out localhost.crt
|
| 11 |
|
| 12 |
-
export SSL_CERT_FILE=/
|
| 13 |
-
export NODE_EXTRA_CA_CERTS=/
|
| 14 |
export NODE_TLS_REJECT_UNAUTHORIZED=0
|
| 15 |
ls -lh
|
| 16 |
|
|
|
|
| 9 |
openssl req -new -key private.key -out csr.pem -subj "/CN=localhost"
|
| 10 |
openssl req -x509 -days 365 -key private.key -in csr.pem -out localhost.crt
|
| 11 |
|
| 12 |
+
export SSL_CERT_FILE=$HOME/socks-server/localhost.crt
|
| 13 |
+
export NODE_EXTRA_CA_CERTS=$HOME/socks-server/localhost.crt
|
| 14 |
export NODE_TLS_REJECT_UNAUTHORIZED=0
|
| 15 |
ls -lh
|
| 16 |
|