diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-05 14:22:31 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-05 14:22:31 +0200 |
commit | e234229ae80da0fa9967b797f7b5f4f381cba4b4 (patch) | |
tree | 02bed359b39eb1e8b7f022afb6fdba451292b5c6 /webserver.conf | |
parent | 918685c1c09de1e3cd14c41bb8cc8b89a177ccd2 (diff) |
All certificates configurable per site
Diffstat (limited to 'webserver.conf')
-rw-r--r-- | webserver.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webserver.conf b/webserver.conf index 46d4120..38af8ab 100644 --- a/webserver.conf +++ b/webserver.conf @@ -22,6 +22,8 @@ <target>/var/lib/webbox</target> </path> --> + <certpath>/home/ernie/code/webserver/fullchain.pem</certpath> + <keypath>/home/ernie/code/webserver/privkey.pem</keypath> </site> <site> <name>marx</name> @@ -29,6 +31,8 @@ <path requested="/" type="files"> <target>/home/ernie/homepage/test1</target> </path> + <certpath>/home/ernie/code/webserver/cert.pem</certpath> + <keypath>/home/ernie/code/webserver/key.pem</keypath> </site> <!-- reichwein.it @@ -51,8 +55,6 @@ <address>127.0.0.1</address> <port>8081</port> <protocol>https</protocol> - <certpath>/home/ernie/code/webserver/fullchain.pem</certpath> - <keypath>/home/ernie/code/webserver/privkey.pem</keypath> </socket> </sockets> </webserver> |