We’ve been a long time user of Pydio starting with version 7. Now with Cells starting to become main stream we’ve been testing within our environment.
I am able to setup an Ubuntu Server with Pydio Cells 1.6.1 without any hiccups when following the guide. When I switch the SSL certificate from Self Signed to Let’s Encrypt, this is where things go wrong. I get the following message.
2019-10-17T13:10:17.148-0700 ERROR pydio.gateway.proxy Could not run {“error”: “registration error: acme: Error 403 - urn:acme:error:unauthorized - Account creation on ACMEv1 is disabled. Please upgrade your ACME client to a version that supports ACMEv2 / RFC 8555. See nolinkhttps://community.letsencrypt.org/t/end-of-life-plan-for-acmev1/88430 for details.”}
So based on that message I figured I would change the CA patch on the pydio.json file from:
{
“cert”: {
“proxy”: {
“caUrl”: “https://acme-v01.api.letsencrypt.org/directory”,
“email”: “person@mail.somewhere”,
“httpRedir”: true,
“self”: false,
“ssl”: true
to
{
“cert”: {
“proxy”: {
“caUrl”: “https://acme-v02.api.letsencrypt.org/directory”,
“email”: "person@mail.somewhere,
“httpRedir”: true,
“self”: false,
“ssl”: true
But this doesn’t seem to work. When using a Self Signed Cert, I can use Cells with no issues. All HTTP to HTTPS redirects perfectly from internal and external request. I’d love to get the Let’s Encrypt working, but if it won’t then I would be fine using a manual cert. Has anyone had any success or documentation on setting up a manual SSL cert from a CA?
Any help is appreciated.