Questions tagged «fcgi»

1
使用gitolite和nginx的HTTP上的git
我正在尝试设置一个服务器,在该服务器上可以使用HTTP(S)访问我的git repo。 我正在使用gitolite和nginx(以及用于Web界面的gitlab,但我怀疑这有什么区别)。 我整个下午都在搜索,我觉得很困。 我想我已经理解nginx需要fcgiwrap才能与gitolite一起使用,因此我尝试了几种配置,但没有一种可以使用。 我的存储库位于/ home / git / repositories。 这是我尝试过的三种nginx配置。 1: location ~ /git(/.*) { gzip off; root /usr/lib/git-core; fastcgi_pass unix:/var/run/fcgiwrap.socket; include /etc/nginx/fcgiwrap.conf; fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend; fastcgi_param DOCUMENT_ROOT /usr/lib/git-core/; fastcgi_param SCRIPT_NAME git-http-backend; fastcgi_param GIT_HTTP_EXPORT_ALL ""; fastcgi_param GIT_PROJECT_ROOT /home/git/repositories; fastcgi_param PATH_INFO $1; #fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; } 结果: > git …
10 nginx  git  gitolite  fcgi 

1
手动访问PHP-FPM的/ status页面(绕过Apache)
有一个PHP5.3.3错误,不允许我通过Apache2查看php-fpm的/ status页面。有没有办法手动访问此数据?我无法升级该盒子(不支持Ubuntu 10.10,php5.3.4)。 我尝试过使用此处的技术进行连接:http : //inode.co.nz/testing-a-fastcgi-service,但是没有运气。
9 php-fpm  fcgi 

2
php-cgi每隔几个小时就安静地死去
php-cgi -v PHP 5.2.11-pl1-gentoo (cgi-fcgi) (built: Dec 21 2009 09:10:29) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies 系统信息 dev-lang/php-5.2.11-r1 gentoo 10.1 更新:我只是用最少的USE标志编译了PHP。现在看起来更好。让我们再等一会。
-1 php  gentoo  fcgi 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.