I am not able to open my studio showing this error
Anyone knows how to solve this…Urgent!
Your SSL certificates are not correctly set up, it’s only valid for learning.vahanacloud.com and not any of your subdomains such as studio.learning.vahanacloud.com
But earlier is was working fine. What steps I have to perform now to correct it back
typically the SSL cert generation happens when launching the platform. Try run tutor local launch
and confirm that your details are correctly set, example:
Are you configuring a production platform? Type 'n' if you are just testing Tutor on your local computer [Y/n] y
Your website domain name for students (LMS) [learning.vahanacloud.com]
Your website domain name for teachers (CMS) [studio.learning.vahanacloud.com]
Your platform name/title [Vahana]
Your public contact email address [youremail@vahanacloud.com]
The default language code for the platform [en]
Activate SSL/TLS certificates for HTTPS access? Important note: this will NOT work in a development environment. [Y/n] y
Caddy should generate the certs when you do Y on “Activate SSL/TLS”
at the very end it should tell you your domain names, example:
All services initialised.
The platform is now running and can be accessed at the following urls:
https://learning.vahanacloud.com
https://studio.learning.vahanacloud.com
https://meilisearch.learning.vahanacloud.com
https://apps.learning.vahanacloud.com
If it’s still not working then you should check the logs to see why, a decent starting point would be to check the Caddy logs for errors from LetsEncrypt
tutor local logs caddy
If there’s too much to easily read there you can filter it like this as an example:
tutor local logs caddy --tail=100 -f | grep letsencrypt | grep error
(show last 100 lines, filter by “letsencrypt” and subfilter by “error”)