scp example.com.* your_remote_server: ssh your_remote_server sudo mkdir /etc/nginx/ssl sudo cp example.com.* /etc/nginx/ssl
Edit appropriate configuration file(s). Finally, run:
sudo systemctl restart nginx
and nothing, or rather an error message with information that nginx cannot access ssl certificate files. You check and files exists, so what's the problem?
The problem is a SELinux security context, diffrent for /etc/ngnix and /home/X
To change it you need to run chcon. For example:
chcon --reference /etc/nginx/nginx.conf /etc/nginx/ssl/example.com.*
More info at: https://www.cyberciti.biz/faq/rhel-centos-feora-linux-change-copy-selinux-context/