Created
June 11, 2017 21:16
-
-
Save jonsamp/587b78b7698be7c7fd570164a586e6b7 to your computer and use it in GitHub Desktop.
Create https key and cert on localhost
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/ | |
mkdir .localhost-ssl | |
sudo openssl genrsa -out ~/.localhost-ssl/localhost.key 2048 | |
sudo openssl req -new -x509 -key ~/.localhost-ssl/localhost.key -out ~/.localhost-ssl/localhost.crt -days 3650 -subj /CN=localhost | |
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/.localhost-ssl/localhost.crt | |
npm install -g http-server | |
echo " | |
function https-server() { | |
http-server --ssl --cert ~/.localhost-ssl/localhost.crt --key ~/.localhost-ssl/localhost.key | |
} | |
" >> ~/.bash_profile | |
source ~/.bash_profile | |
echo "You're ready to use https on localhost 💅" | |
echo "Navigate to a project directory and run:" | |
echo "" | |
echo "https-server" |
The script doesn't work. I get the following: /Users/junkbox/.bash_profile: line 9: `https-server': not a valid identifier
after executing the script run
sudo http-server --ssl --cert ~/.localhost-ssl/localhost.crt --key ~/.localhost-ssl/localhost.key
it will work
Ok, the script works but How do I enable certs for my local tomcat server running on port 8080?
I tried changing my application port to 8081, but does not work. Am I missing something?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@quintendewilde
The local host directory is hidden. In terminal do a
cd ~/
then dols -a
and you should see the folder created.Also you dont need to put the folders anywhere. just cd to the folder and run
https-server