<VirtualHost *:443>
    ServerName app.natureshealthcare.co.uk

    ProxyPreserveHost On
    ProxyPass / http://127.0.0.1:3000/
    ProxyPassReverse / http://127.0.0.1:3000/

    SSLEngine on
    SSLCertificateFile /path/to/your_cert.crt
    SSLCertificateKeyFile /path/to/your_key.key

    <Directory "/home/redcarpetgoa/public_html/frontend">
        Require all granted
    </Directory>
</VirtualHost>
