Skip to content

Commit d5f1a72

Browse files
committed
tweaks
1 parent 5833528 commit d5f1a72

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/deploying.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ Here is a sample lighttpd configuration file to expose a web.py app using fastcg
3434
# path to the application
3535
"bin-path" => "/path/to/yourapp.py",
3636

37+
# number of fastcgi processes to start
3738
"max-procs" => 1,
39+
3840
"bin-environment" => (
3941
"REAL_SCRIPT_NAME" => ""
4042
),
@@ -55,4 +57,4 @@ Here is a sample lighttpd configuration file to expose a web.py app using fastcg
5557
"^/(.*)$" => "/yourapp.py/$1",
5658
)
5759

58-
With this configuration lighttpd takes care of starting the application. The webserver tasks to your application using fastcgi via a unix domain socket. This means both the webserver and the application will run on the same machine.
60+
With this configuration lighttpd takes care of starting the application. The webserver talks to your application using fastcgi via a unix domain socket. This means both the webserver and the application will run on the same machine.

0 commit comments

Comments
 (0)