diff options
author | Teddy Wing | 2018-11-13 01:18:28 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-13 01:18:28 +0100 |
commit | 87d9b43b607eac9bfa15b725d6634262734c225b (patch) | |
tree | 51c3c9ed8a9b6e7816cccc607991e5739bf0873c | |
parent | c97f9f616b44c26eb12077aa85fb96831473c7ba (diff) | |
download | dome-key-web-87d9b43b607eac9bfa15b725d6634262734c225b.tar.bz2 |
lighttpd.conf: Use `license` binary for `/license/download` route
-rw-r--r-- | license-generator/lighttpd.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/license-generator/lighttpd.conf b/license-generator/lighttpd.conf index aa64347..e6de9c7 100644 --- a/license-generator/lighttpd.conf +++ b/license-generator/lighttpd.conf @@ -23,7 +23,7 @@ fastcgi.server = ( "/license/download" => (( "socket" => "./license-download.fcgi.socket", "check-local" => "disable", - "bin-path" => var.CWD + "/target/debug/license-download", + "bin-path" => var.CWD + "/target/debug/license", "max-procs" => 1 )) ) |