Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


How to use Let’s Encrypt with znc
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

How to use Let’s Encrypt with znc

Hi,

I am using DDNS with NO-IP.com. I have a free domain name there. But is it also possible to have a certificate on this domain name? id like to use it as a weburl for my znc web panel

Kind Regards,

Comments

  • so do you have a reverse proxy setup? i use docker with jwilder proxy but this it command i use.

    docker run -d -p 80:80 -p 443:443 \

    --name nginx-proxy \

    -v /opt/docker/proxy/certs:/etc/nginx/certs:ro \

    -v /etc/nginx/vhost.d \

    -v /usr/share/nginx/html \

    --restart=always \

    -v /var/run/docker.sock:/tmp/docker.sock:ro \

    jwilder/nginx-proxy



    docker run -d \

    --name nginx-proxy-companion \

    -v /opt/docker/proxy/certs:/etc/nginx/certs:rw \

    --volumes-from nginx-proxy \

    --restart=always \

    -v /var/run/docker.sock:/var/run/docker.sock:ro \

    jrcs/letsencrypt-nginx-proxy-companion


    docker run -d -p 36667:6667 --name znc \

    -e VIRTUAL_HOST=znc.domain.com \

    -e LETSENCRYPT_HOST=znc.domain.com \

    -e [email protected] \

    -v /opt/docker/znc:/znc-data jimeh/znc

  • Do you have cpanel?

Sign In or Register to comment.