1

This post shows how to add a certificate to an application, my question, is there a way to add multiple certificates both non-wildcard and wildcard certificate to a single application.

For example, I have an app called websites where it is home to multiple websites, is it possible to set several certificates to this application using Flynn?

quarks
  • 33,478
  • 73
  • 290
  • 513

1 Answers1

1

You can add as many domains/certificates as you want to an app.

Use the flynn route add http $DOMAIN -c $CERTIFICATE_PEM_FILE -k $KEY_PEM_FILE command to add additional routes. You can distinguish between routes in requests to the app by checking the HTTP Host header.

titanous
  • 3,668
  • 3
  • 27
  • 26
  • 1
    A side question, is Flynn project already abandoned I saw a Github issue stating that it is no longer maintained? – quarks Jul 08 '20 at 20:03
  • 2
    No, it is not abandoned. We have not had a lot of bandwidth to work on the open source side lately, but there are a bunch of fixes and new features in the pipeline. We run it in production for customers, it is stable and works. – titanous Jul 09 '20 at 00:30
  • Then this should be addressed https://github.com/flynn/flynn/issues/4601 because it leaves the impression that "Flynn is not maintained anymore" – quarks Jul 09 '20 at 04:25