-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 29 Jan 2010, at 03:02, PF4Pylons wrote:

The provider is Godaddy
Here is all they say about fastcgi in their help section

http://help.godaddy.com/search?q=fastcgi&x=0&y=0

Quite cryptic sometimes.


Looks like you may unfortunately be constrained to CGI:

http://webpy.org/godaddy.com

FWIW:

Two config lines from my apache's default.conf file showing fastcgi i) port and ii) socket configs:

FastCgiServer /www/app1/app1.fcgi -port 8081 -processes 1
FastCgiServer /www/app2/app2.fcgi -idle-timeout 120 -socket /www/ app2/app2.sock -processes 2


The contents of file /www/app1/app1.fcgi are:

#!/usr/bin/python
from paste.deploy import loadapp
wsgi_app = loadapp('config:/www/app1/production.ini')
if __name__ == '__main__':
    from flup.server.fcgi import WSGIServer
    WSGIServer(wsgi_app).run()



content of app2.fcgi is more or less identical

Cheers,

(A different) Graham

http://www.linkedin.com/in/ghiggins




-----BEGIN PGP SIGNATURE-----

iEYEARECAAYFAktiYZQACgkQOsmLt1Nhivz4EgCfT2/7fHszpOQQ/8pXDS7ZwhrX
7QAAoJ1iyU6mjew8Zc0YdYpgpVGGmuVyiQCVAgUBS2JhlFnrWVZ7aXD1AQKpEQP/
WMecC2FkIPXCG0eWBXrBVkrUK9PTx0Bm4wbhmisKiHDDCI2SMpvhGyzG6D1F/4br
VcKb5MMtUauj/J6PCCqHYVKwikn71CmNFbUFvCor+6RXRuu7/uoxSYNatp4Si532
mRTLOiq9PaTn0clgrC/D8WYXdqv/pxATazoglPYVoxk=
=SrQR
-----END PGP SIGNATURE-----

--
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.

Reply via email to