On Jul 19, 3:04 am, Matthew Hoopes <[email protected]> wrote: > So, I took the default development.ini and modified these lines: > > use = egg:Flup#scgi_thread > host = 127.0.0.1 > port = 6500 > > > At this point, it still serves the default pylons page (the > index.html) but doesn't go to any controllers. So, myexample.com will > go to the index.html (and i can edit that file, and see changes > immediately), but going tohttp://myexample.com/hello/indexgives me > the pylons 404 page. If I keep the app exactly the same, and serve it > straight up with paster (using the default development.ini), I can see > my index action in the hello controller.
According to http://wiki.pylonshq.com/display/pylonscookbook/Running+Pylons+with+SCGI+and+Lighttpd#RunningPylonswithSCGIandLighttpd-SettingupPylons you should set 'scriptName = ""' in your config (section [server:main]). Check the following ticket as well: http://pylonshq.com/project/pylonshq/ticket/615. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
