Lets encrypt on a server with multiple websites?

2

I read the website for let's encrypt, to get it to work you:

$ sudo apt-get install lets-encrypt

$ lets-encrypt example.com

But what if I am on a server hosting example.com, example1.com, example2.com, example3.com. How am I supposed to get a encryption key for each of the websites?

Whitecat

Posted 2015-06-13T02:54:49.663

Reputation: 529

I would assume you'd do it for every website. – Jon – 2015-06-13T03:00:50.033

Answers

0

Since they've not put the manpage(s) on web, I'll take some time to look at the source files.

First, the command has "--help" option that will display all the switches available to you. And then there's "--domains" and "--server" option that could be useful for you. "--authkey" specifies the location of authorized key file. These settings are for commands "run" "auth" and "install".

The comments in source file also mentioned these settings are also configurable in the configuration file at "/etc/letsencrypt" (the name may vary sliently by the package manager... sometime they decide to add/remove hyphens in name... so if the file not exist please also seek for file with similar name)

cheong00

Posted 2015-06-13T02:54:49.663

Reputation: 39