Created
October 27, 2017 20:21
-
-
Save prof3ssorSt3v3/fca5694540283610c5fd1b344ad4b13f to your computer and use it in GitHub Desktop.
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
#BACKUP YOUR FILES FIRST | |
#EDITS FOR httpd.conf | |
#1. Uncomment these lines | |
LoadModule ssl_module modules/mod_ssl.so | |
Include /Applications/MAMP/conf/extra/httpd-ssl.conf | |
#2. Change ServerName value | |
ServerName localhost:443 | |
#EDITS FOR httpd-ssl.conf | |
#3. Uncomment | |
Listen 443 | |
#4. Edit VirtualHost opening tag | |
<VirtualHost *:443> | |
#5. Inside VirtualHost edit these lines | |
DocumentRoot "/Applications/MAMP/htdocs" | |
ServerName localhost:443 | |
SSLEngine on | |
#6. Add/Uncomment/Edit the two certificate lines | |
SSLCertificateFile "/Users/YOURUSERNAME/ssl/server.crt" | |
SSLCertificateKeyFile "/Users/YOURUSERNAME/ssl/server.key" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Commenting is leaving comments in your code. Writing notes to yourself and other developers.