In our company, we have a proxy server with a self-signed CA certificate implementing MITM inspection. No internet connection is possible without this proxy server. My certificate installation process on a fresh install of Ubuntu server 20.04 (omitting sudo
):
apt install ca-certificates
openssl x509 -inform der -in CompanyCA.cer -out CompanyCA.crt
openssl x509 -inform der -in CompanyRootCA.cer -out CompanyRootCA.crt
cp CompanyCA.crt CompanyRootCA.crt /usr/local/share/ca-certificates/
update-ca-certificates
This seems to have no effect. curl
and wget
still require the -k
and --no-certificate-check
options and apt
's certificate verification fails. Timezone, date and time are set correctly.
Is there something else I could try (except ignoring it)?