Skip to content

Commit

Permalink
Added deploying using lighttpd + fastcgi
Browse files Browse the repository at this point in the history
  • Loading branch information
anandology committed Nov 7, 2013
1 parent 315abc2 commit 5833528
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
58 changes: 58 additions & 0 deletions docs/deploying.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
Deploying web.py applications
=============================

FastCGI
-------

web.py uses `flup`_ library for supporting fastcgi. Make sure it is installed.

.. _flup: http://trac.saddi.com/flup

You just need to make sure you applicaiton file is executable. Make it so by adding the following line to tell the system to execute it using python::

#! /usr/bin/env python

and setting the exeutable flag on the file::

chmod +x /path/to/yourapp.py

Configuring lighttpd
^^^^^^^^^^^^^^^^^^^^

Here is a sample lighttpd configuration file to expose a web.py app using fastcgi. ::

# Enable mod_fastcgi and mod_rewrite modules
server.modules += ( "mod_fastcgi" )
server.modules += ( "mod_rewrite" )

# configure the application
fastcgi.server = ( "/yourapp.py" =>
((
# path to the socket file
"socket" => "/tmp/yourapp-fastcgi.socket",

# path to the application
"bin-path" => "/path/to/yourapp.py",

"max-procs" => 1,
"bin-environment" => (
"REAL_SCRIPT_NAME" => ""
),
"check-local" => "disable"
))
)

url.rewrite-once = (
# favicon is usually placed in static/
"^/favicon.ico$" => "/static/favicon.ico",

# Let lighttpd serve resources from /static/.
# The web.py dev server automatically servers /static/, but this is
# required when deploying in production.
"^/static/(.*)$" => "/static/$1",

# everything else should go to the application, which is already configured above.
"^/(.*)$" => "/yourapp.py/$1",
)

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.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Contents:
input
db
templating
deploying
api

Getting Started
Expand Down

0 comments on commit 5833528

Please sign in to comment.