• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[SSL] Make Certificate

olavo

New Member
Joined
May 29, 2007
Messages
74
Reaction score
0
Make your own SSL certificate for XAMPP under Windows

Step 1
Open command line:
start>run>'cmd'

Step 2
Navigate to bin folder:
cd "C:\path\to\xampp\apache\bin"

Step 3
Type:
openssl

Step 4
Create a Local Key Pair:
genrsa -out server.key 1024

Step 5
Create a Self-Signed Certificate:
req -config "C:\path\to\xampp\apache\bin\openssl.cnf" -new -key server.key -x509 -days 700 -out server.crt
Enter required information or press enter to skip.

Step 6
Now you have two files in bin folder:
server.key copy to xampp\apache\conf\ssl.key\
server.crt copy to xampp\apache\conf\ssl.crt\
Restart Acpache
 
M$ Office has also small program called 'makecert.exe'. But thx. It would be nice if you write more word about making SSL certs on other servs :]
 
Back
Top