How to renew the SSL of the Master Hostname for SolusVM using acme.sh script?

Follow
Was this article helpful?
4 out of 5 found this helpful
Return to top

Comments

1 comment

  • Avatar
    Websavers Inc

    If you have followed the guide here to lock down the entire SolusVM control panel to all IPs except your own, then this renewal will fail because the deny all configuration will block Let's Encrypt IPs from validating the domain.

    To resolve this, you must edit /usr/local/svmstack/nginx/conf/services/legacy-master.conf

    In the `server{ listen 80;` section, add to the bottom of it:

    location /.well-known{
    allow all;
    }

    Then service svmstack-nginx restart

    Now the renewal will work. Perhaps Solus devs could add this into legacy-master.conf for future releases?

    0
    Comment actions Permalink

Please sign in to leave a comment.

Have more questions? Submit a request