You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deploying.rst
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,9 @@ Here is a sample lighttpd configuration file to expose a web.py app using fastcg
34
34
# path to the application
35
35
"bin-path" => "/path/to/yourapp.py",
36
36
37
+
# number of fastcgi processes to start
37
38
"max-procs" => 1,
39
+
38
40
"bin-environment" => (
39
41
"REAL_SCRIPT_NAME" => ""
40
42
),
@@ -55,4 +57,4 @@ Here is a sample lighttpd configuration file to expose a web.py app using fastcg
55
57
"^/(.*)$" => "/yourapp.py/$1",
56
58
)
57
59
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