Fresh install of Mediawiki 1.37.2 on Ubuntu gives an error with the visual editor:
Error contacting the Parsoid/RESTBase server: (curl error: 77) Problem with the SSL CA cert (path? access rights?)
in LocalSettings.php is only put: wfLoadExtension( 'VisualEditor' );
How could this be solved?
Can well be a permission issue. Make sure that your certificate is readable by both root and web server user (probably, www-data). Can be done by
chown root:www-data fullchain.pem privkey.pem; chmod g+r fullchain.pem privkey.pem.