layout | title |
---|---|
default |
Web.py using FastCGI and Apache 2 |
- Apache 2.x
- mod_fcgid
- mod_rewrite
- Flup
Note, on CentOS compiling mod_fcgid requires apache-devel be installed (available via yum).
Replace '/var/www/myapp/' with the path to your apps directory
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule fcgid_module modules/mod_fcgid.so
SocketPath /tmp/fcgidsock
SharememPath /tmp/fcgid_shm
Alias /static "/var/www/myapp/static"
Alias / "/var/www/myapp/"
<Directory "/var/www/myapp/">
allow from all
SetHandler fcgid-script
Options +ExecCGI
AllowOverride None
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !^/icons
RewriteCond %{REQUEST_URI} !^/favicon.ico$
RewriteCond %{REQUEST_URI} !^(/.*)+code.py/
RewriteRule ^(.*)$ code.py/$1 [PT]
</IfModule>
</Directory>
<Directory "/var/www/myapp/static">
allow from all
AllowOverride None
Options -ExecCGI
SetHandler None
</Directory>
Note the following line is required: web.wsgi.runwsgi = lambda func, addr=None: web.wsgi.runfcgi(func, addr)
.
#!/usr/bin/python
import web
urls = ("/.*", "hello")
app = web.application(urls, globals())
class hello:
def GET(self):
return 'Hello, world!'
web.wsgi.runwsgi = lambda func, addr=None: web.wsgi.runfcgi(func, addr)
if __name__ == "__main__":
app.run()
- Start your server.
- Open your application with your browser
- To confirm your application is running try:
ps aux | grep code.py
Check your apache error log for information!
You might see error code 255 in your logs. Ensure the directory is readable and that code. py is executable:
chmod +x code.py
Is your Alias path correct in your apache configuration?
web.py spawns http://0.0.0.0:8080, dies unexpectedly, or returns nothing.
Did you add this line?
web.wsgi.runwsgi = lambda func, addr=None: web.wsgi.runfcgi(func, addr)
- After updating your application you may need to restart your web server to see the changes.
- If you do not have root access to your Apache server, you may not have access to all of the above commands in the .htaccess file in your project directory. See this githup repository for a first-draft workaround, using hosted server on bluehost.com. (This is a hack written by someone who doesn't understand Apache and web.py thoroughly.)