diff options
| -rw-r--r-- | license-generator/lighttpd.conf | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/license-generator/lighttpd.conf b/license-generator/lighttpd.conf index 4fc6f2d..aa64347 100644 --- a/license-generator/lighttpd.conf +++ b/license-generator/lighttpd.conf @@ -8,10 +8,22 @@ server.modules += ( "mod_fastcgi" ) fastcgi.debug = 1 fastcgi.server = ( - "/" => (( - "socket" => "./fcgi.socket", + "/fulfillment" => (( + "socket" => "./license-generator.fcgi.socket", "check-local" => "disable", "bin-path" => var.CWD + "/target/debug/license-generator", "max-procs" => 1 + )), + "/license" => (( + "socket" => "./license.fcgi.socket", + "check-local" => "disable", + "bin-path" => var.CWD + "/target/debug/license", + "max-procs" => 1 + )), + "/license/download" => (( + "socket" => "./license-download.fcgi.socket", + "check-local" => "disable", + "bin-path" => var.CWD + "/target/debug/license-download", + "max-procs" => 1 )) ) |
