[SOLVED] BlueCherry Nginx Certificate

Hi,

I am not able change the certificate it’s keep binding to localhost certificate nginx.

/etc/nginx/sites-enabled/bluecherry.conf

server {
#  listen 80;
  listen 443 default_server ssl;
  ssl on;
  ssl_certificate /root/.acme.sh/nvr.test.net/nvr.test.net.cer;
  ssl_certificate_key /root/.acme.sh/nvr.test.net/nvr.test.net.key;
  index index.php
  server_name nvr.example.net;
  root       /usr/share/bluecherry/www;

  error_log  /var/log/nginx/bluecherry-error.log;
  access_log /var/log/nginx/bluecherry-access.log;

  include /usr/share/bluecherry/nginx-includes/snakeoil.conf;
  include /usr/share/bluecherry/nginx-includes/bionic.conf;

Fixed,

I had to change the certificate and key under /usr/share/bluecherry/nginx-includes/snakeoil.conf

Are you using your own LetsEncrypt SSL key or the automated process we built in?