How to properly enable TLS on Windows #1183
Answered
by
thiagobenine
thiagobenine
asked this question in
Q&A
-
I installed chocolatey and ran Here is the output with error C:\Users\thiagobenine\proxy.py>make ca-certificates
process_begin: CreateProcess(NULL, uname, ...) failed.
Makefile:27: pipe: No such file or directory
# Generate CA key
process_begin: CreateProcess(NULL, # Generate CA key, ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [Makefile:67: ca-certificates] Error 2 Am I doing something wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
thiagobenine
Jun 8, 2022
Replies: 1 comment
-
I managed to make it work by manually executing the commands in the # Generate CA key
python -m proxy.common.pki gen_private_key \
--private-key-path ca-key.pem
python -m proxy.common.pki remove_passphrase \
--private-key-path ca-key.pem
# Generate CA certificate
python -m proxy.common.pki gen_public_key \
--private-key-path ca-key.pem \
--public-key-path ca-cert.pem
# Generate key that will be used to generate domain certificates on the fly
# Generated certificates are then signed with CA certificate / key generated above
python -m proxy.common.pki gen_private_key \
--private-key-path ca-signing-key.pem
python -m proxy.common.pki remove_passphrase \
--private-key-path ca-signing-key.pem |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thiagobenine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I managed to make it work by manually executing the commands in the
Makefile