这篇“ubuntu fastcgi怎么配置”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“ubuntu fastcgi怎么配置”文章吧。
lighttpd 的配置脚本在 /etc/lighttpd/lighttpd.conf,采用默认值缺省的server.document-root路径是 /var/www
具体实施步骤:
1) 首先实现一个 python 脚本
touch /var/www/hello.py chmod 755 /var/www/hello.py vim /var/www/hello.py
复制代码 代码如下:
#!/usr/bin/env python import web urls = ( '/hello', 'hello', '/hello/(.*)$', 'hello' ) app = web.application(urls, globals()) class hello: def get(self, name=none): if not name: name = 'world' return 'hello, ' + name + '!' if __name__ == "__main__": app.run()
2) 配置 fastcgi
vim /etc/lighttpd/conf-available/10-fastcgi.conf
复制代码 代码如下:
server.modules += ( "mod_fastcgi" ) fastcgi.server = ("/hello" => (( "bin-path" => "/var/www/hello.py", "socket" => "/tmp/hello.py.socket", "max-procs" => 1, "bin-environment" => ( "real_script_name" => "" ), "check-local" => "disable" )) )
3) 启用 fastcgi
lighttpd-enable-mod fastcgi
4) 重启 lighttpd
/etc/init.d/lighttpd force-reload
5) 在浏览器中验证结果
http://localhost/hello 得到的结果是 hello, world!
http://localhost/hello/sendltd 得到的结果是 hello, sendltd!
6) 补充说明
这样配置静态页面和动态页面可以共存,不需要配置 mod_rewrite。
每次修改 python 脚本都要重启lighttpd。
可以在 10-fastcgi.conf 中 配置多个sever,但是socket不能相同 。
以上就是关于“ubuntu fastcgi怎么配置”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。