Client SSL Certificate for Remote Includes

These are old archives. They are kept for historic purposes only.
Post Reply
master2004134
Posts: 5
Joined: Thu May 18, 2006 12:38 am

Client SSL Certificate for Remote Includes

Post by master2004134 »

Hi,

I've been attempting to get remote includes working with SSL client certificates. I've properly configured Apache, created my own CA with the proper information, and also signed the unreal-generated CSR so that it would work. However, I still get this:
*** Notice -- error: custom.conf:1: include: error downloading 'https://my.hostname/conf/test.conf': SSL certificate problem, verify that the CA cert is OK. Details:
*** Notice -- error: IRCd configuration failed to load
It also fails with normal HTTPS with password authentication. Obviously the certificates are self-signed, but here's the ssl portion of my config:

Code: Select all

ssl {
certificate "server.cert.pem";
key "server.key.pem";
trusted-ca "/home/myuser/CA/demoCA/cacert.pem";
options { insecure; };
};
};
Any ideas or alternate methods?
master2004134
Posts: 5
Joined: Thu May 18, 2006 12:38 am

Re: Client SSL Certificate for Remote Includes

Post by master2004134 »

So I decided to start again from scratch....apparently using the insecure option under the ssl block causes Unreal to segfault... :oops:

I can get it to work using cURL from the command-line, but Unreal refuses to use the certificate.
Post Reply