Hey guys,
can anyone diagnose an error? I just setup webpy on lighttpd/fastcgi
on a linode server. I loaded the code.py from the webpy tutorial
(http://webpy.org/tutorial3.en) and the conf files(http://webpy.org/
cookbook/fastcgi-lighttpd) and everything seems to work but going to
my domain gives me a 404.
Here are my conf files for reference:
http://pastebin.com/m36d24ab
and the code.py, which is living in my doc root: /var/www
#!/usr/bin/python
import web
urls = (
'/', 'index'
)
app = web.application(urls,globals())
class index:
def GET(self):
return "HELLO world"
if __name__ == "__main__": app.run()
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/webpy?hl=en.