just append your certificate and CA certificate
$ cat server.crt ca.crt > server.chained.crt
nginx.conf
// --------
ssl_certificate /home/yourusername/ssl/server.chained.crt;
ssl_certificate_key /home/yourusername/ssl/server_private.key;
// ---------