Page 1 of 1

SSL Kiwiirc

Posted: Sat May 27, 2023 5:21 pm
by logics
Friends, how do I make Kiwiirc chat ex: https://chat.server.org open with SSL?

I used certbot with unreal all ok irc.server.org.. I know it's not supported by kiwiirc. if you can help me

Code: Select all

# The websocket / http server
#[server.1]
#bind = "web.vipchat.com.br"
#port = 80

# Example TLS server
[server.2]
bind = "web.server.org"
port = 80
tls = true
cert = /etc/letsencrypt/live/web.vipchat.com.br/cert.pem
key = /etc/letsencrypt/live/web.vipchat.com.br/privkey.pem

# If you don't have a certificate, uncomment the below line to automatically generate a
# free certificate using letsencrypt.com (overrides the above cert/key options). This requires
# a server running on port 80 to initially generate the certificate.
#letsencrypt_cache = ./certs

Re: SSL Kiwiirc

Posted: Sat May 27, 2023 5:40 pm
by dktmb
Hi logics,

Kiwiirc supports LE certifcates

The cert must be fullchain.pem, the key is ok

cert = /etc/letsencrypt/live/web.vipchat.com.br/fullchain.pem
key = /etc/letsencrypt/live/web.vipchat.com.br/privkey.pem

Re: SSL Kiwiirc

Posted: Sat May 27, 2023 10:41 pm
by logics
Friend, do not open the kiwiirc https page.

Re: SSL Kiwiirc

Posted: Sun May 28, 2023 12:50 am
by logics
it worked thanks.