Page 1 of 1

Client SSL Certificate for Remote Includes

Posted: Thu Jun 11, 2009 6:01 pm
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?

Re: Client SSL Certificate for Remote Includes

Posted: Thu Jun 11, 2009 7:06 pm
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.