Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Traefik 2 acme using slightly different format #7

Open
aronmgv opened this issue Aug 17, 2020 · 0 comments
Open

Traefik 2 acme using slightly different format #7

aronmgv opened this issue Aug 17, 2020 · 0 comments

Comments

@aronmgv
Copy link

aronmgv commented Aug 17, 2020

Hi,

Traefik 2 acme is using slightly different format. Would you please be so kind and adapt to it?

Traefik 1 ACME:

{
  "Account": {
    "Email": "[email protected]",
    "Registration": {
      "body": {
        "status": "valid",
        "contact": [
          "mailto:[email protected]"
        ]
      },
      "uri": "https://acme-v02.api.letsencrypt.org/acme/acct/3123123134323"
    },
    "PrivateKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
    "KeyType": "4096"
  },
  "Certificates": [
    {
      "Domain": {
        "Main": "example.com",
        "SANs": null
      },
      "Certificate": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",

Traefik 2 ACME:

{
  "default": {
    "Account": {
      "Email": "[email protected]",
      "Registration": {
        "body": {
          "status": "valid",
          "contact": [
            "mailto:[email protected]"
          ]
        },
        "uri": "https://acme-v02.api.letsencrypt.org/acme/acct/123345234134"
      },
      "PrivateKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "KeyType": "4096"
    },
    "Certificates": [
      {
        "domain": {
          "main": "example.com",
          "sans": [
            "*.example.com"
          ]
        },
        "certificate": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",

Appreciate, Michal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant