Spaces:
Paused
Paused
Update entrypoint.sh
Browse files- entrypoint.sh +1 -2
entrypoint.sh
CHANGED
|
@@ -4,9 +4,8 @@ export PATH=$PATH:$HOME/socks-server/node-v20.15.0-linux-x64/bin
|
|
| 4 |
|
| 5 |
echo $PWD
|
| 6 |
|
| 7 |
-
openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out cert.pem -subj "/CN=localhost"
|
| 8 |
openssl genpkey -algorithm RSA -out private.key
|
| 9 |
-
openssl req -new -key private.key -out csr.pem
|
| 10 |
openssl req -x509 -days 365 -key private.key -in csr.pem -out localhost.crt
|
| 11 |
|
| 12 |
ls -lh
|
|
|
|
| 4 |
|
| 5 |
echo $PWD
|
| 6 |
|
|
|
|
| 7 |
openssl genpkey -algorithm RSA -out private.key
|
| 8 |
+
openssl req -new -key private.key -out csr.pem -subj "/CN=localhost"
|
| 9 |
openssl req -x509 -days 365 -key private.key -in csr.pem -out localhost.crt
|
| 10 |
|
| 11 |
ls -lh
|