• 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!

Lua certbot enable ssl in windows 10

Jeyci

Banned User
Joined
May 6, 2023
Messages
289
Solutions
3
Reaction score
36
Hello Im trying to install ssl in windows and everything seems to be installed propery but i can't access to my site ussing https. don't know the reason i did it in linux and everyhting worked perfectly. but in wndows 10 things seems to be little bit different. can somebody help me to install this please?
 
Im using windows 10 with xampp
Lua:
 ## site.test
 <VirtualHost *:80>
     DocumentRoot "C:/xampp/htdocs"
     ServerName forgottennot.online
     ServerAlias *.forgottennot.online
 </VirtualHost>
 <VirtualHost *:443>
     DocumentRoot "C:/xampp/htdocs"
     ServerName forgottennot.online
     ServerAlias *.forgottennot.online
     SSLEngine on
     SSLCertificateFile "C:/xampp/apache/conf/fullchain.pem"
     SSLCertificateKeyFile "C:/xampp/apache/conf/privkey.pem"
 </VirtualHost>

having problem enabling this on xampp after the editiosn i can't run xampp apache
ideas?


tried this at https-ssl.conf
Code:
<VirtualHost _default_:443>
ServerName firgottennot.onlne:443
SSLEngine on
SSLCertificateFile "c:\xampp\apache\conf\forgottennot.online-crt.pem"
SSLCertificateKeyFile "c:\xampp\apache\conf\forgottennot.online-key.pem"
SSLCertificateChainFile "c:\xampp\apache\conf\forgottennot.online-chain.pem"
SSLOptions +FakeBasicAuth +StrictRequire
<Files ~ ".(cgi|shtml|phtml|exe?)$">
SSLOptions +StdEnvVars +ExportCertData
</Files>

DocumentRoot "${SRVROOT}/htdocs"
CustomLog "${SRVROOT}/logs/ssl_request.log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
<Directory "${SRVROOT}/htdocs">
Options Indexes Includes FollowSymLinks
AllowOverride AuthConfig Limit FileInfo
Require all granted
</Directory>
</virtualhost>
now xamp started
have enabled port 80 and 443 both in modem and in computer. still cannot access to the website with https yet
 
Last edited:
Back
Top