Project

General

Profile

Actions

Bug #3232

closed

lighttpd multiple nodes avoiding

Added by srizwan over 1 year ago. Updated over 1 year ago.

Status:
Invalid
Priority:
Low
Category:
-
Target version:
-
ASK QUESTIONS IN Forums:
No

Description

Hi All,

I have added below in lighttpd.conf file and it works fine

fastcgi.server = (
 "/temp_dynamicflow" => ((
    "bin-path" => "/etc/lighttpd/temp_dynamic_val.fcgi",
    "socket" => "/tmp/temp_dynamic_val.fcgi",
    "check-local" => "disable",
    "max-procs" => 2,
  )),
    "/random_test" => ((
    "bin-path" => "/etc/lighttpd/random.fcgi",
    "socket" => "/tmp/random.fcgi",
    "check-local" => "disable",
    "max-procs" => 2,
  ))
)

Here, temp_dynamicflow and random_test are added in html/javascript , temp_dynamic_val.fcgi, random.cfgi are the generatd binaries.

Usually will have many html/java scripts code which request data from lighttpd fast cgi.

Is there a way to add one single node instead of multiple ones and then access the required resource on the fastcgi application and then send to browser.

Please share some example to do the same.

Actions #1

Updated by gstrauss over 1 year ago

  • Description updated (diff)
Actions #2

Updated by gstrauss over 1 year ago

  • Status changed from New to Invalid
  • Priority changed from Normal to Low
  • Target version deleted (1.4.xx)

This is the lighttpd issue tracker for issues in lighttpd, not user questions.

Questions about lighttpd should be asked in the lighttpd Forums (see tab at top)

However, your question appears to be about FastCGI, so I suggest you learn more about FastCGI and handling routes inside the FastCGI.
https://fastcgi-archives.github.io/FastCGI_Specification.html

Is there a way to add one single node

Yes.

Use a search engine to learn more about FastCGI since you appear to know very little about FastCGI or the code generator you are using.
Do not post here.

Actions

Also available in: Atom