Hey,
For some reason the urls aren't working.
These are the urls:
urls = (
'/blog', 'blog',
'/(.*)', 'home'
)
If I go to "http://isamu/61924/blog" it just shows me the default
page. And if I remove "(.*)" from the home rule I get a "Not found"
error.
I checked the access and error logs from Lighttpd and they looked
normal.
This is my fastcgi and rewrite config:
fastcgi.server = (
".php" => ((
"bin-path" => "/usr/local/bin/php-cgi",
"socket" => "/tmp/php.fastcgi.socket"
)),
"/61924/code.py" => ((
"socket" => "/tmp/webpy_one.fastcgi.socket",
"bin-path" => "/var/www/61924/code.py",
"max-procs" => 1,
"bin-environment" => (
"REAL_SCRIPT_NAME" => ""
),
"check-local" => "disable"
))
)
url.rewrite-once = (
"^/61924/favicon.ico$" => "/61924/static/favicon.ico",
"^/61924/static/(.*)$" => "/61924/static/$1",
"^/61924/(.*)$" => "/61924/code.py/$1"
)
I asked on the irc and looked on Google but I couldn't find and
solution.
I'm using Lighttpd 1.4.19 (fastcgi) with web.py 0.31 on Debian
testing. I hope someone can solve this. Thanks in advance. :)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---