Custom Deployment with ssl certificate

Hello,

I have a wildcard SSL certificate, and I want to deploy OpenRemote on my domain using this certificate. Can anyone help me with the steps to do this?

Hi,

You can simply volume map the full cert chain in pem format into the proxy container:

  proxy:
    image: openremote/proxy:${PROXY_VERSION:-latest}
    restart: always
    depends_on:
      manager:
        condition: service_healthy
    ports:
      - "80:80"
      - "443:443"
      - "8883:8883"
    volumes:
      - proxy-data:/deployment
      - ./path/to/my/cert/_.example.com.pem:/etc/haproxy/certs/_.example.com.pem

Dear Rich ,

thank you for your response,

It is working now but i found some issues in proxy service log: