Skip to content

How to properly enable TLS on Windows #1183

Answered by thiagobenine
thiagobenine asked this question in Q&A
Discussion options

You must be logged in to vote

I managed to make it work by manually executing the commands in the Makefile

	# 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 \
		--…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by thiagobenine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant