SSL/TLS for C-Icap
Status: Beta
Brought to you by:
chtsanti
HI,
How to run c-icap on TLS ?
TlsPort 1345 SSLv2 /usr/local/c-icap/cert/ssl/certificate_1.pem /usr/local/c-icap/cert/ssl/key.pem
TlsPort 1345 tls-method=TLSv1_2 cert=/usr/local/c-icap/cert/ssl/certificate_1.pem key=/usr/local/c-icap/cert/ssl/key.pem
Tried above configuration but failing while starting
Fatal error while parsing config file: "/usr/local/c-icap/etc/c-icap.conf" line: 188
The line is: TLsPort 1345 SSLv2 /usr/local/c-icap/cert/ssl/certificate_1.pem /usr/local/c-icap/cert/ssl/key.pem
Anonymous
Hi,
I am also facing the same problem. Please help.
Fatal error while parsing config file: "/usr/local/etc/c-icap.conf" line: 139
The line is: TlsPort 11344 cert=/usr/local/c-icap/cert/certificate.pem key=/usr/local/c-icap/cert/key.pem
Which c-icap release are you using?
Which is the output of the "c-icap -VV" command?
Hi,
Version is 0.5.5
[root@localhost ~]# c-icap -V
0.5.5
Full version details are below.
[root@localhost ~]# c-icap -VV
c-icap version: 0.5.5
Configure script options:
Configured for host: x86_64-pc-linux-gnu
The most possible is that the c-icap is not compiled with openssl support.
You need to install libssl-dev or openssl-dev or similar package to enable support for TLS/SSL
Thanks chtsanti.