Hi all. My website's work process is the bleow: client_browser:443 -> nginx_reverse_proxy:443 -> nginx_webserver:443 ------------------ in my nginx webserver config file, I setup some ssl options: ssl_verify_client on; ssl_verify_depth 1; ...... I have two questions: 1. Would the nginx webserver check nginx reverse proxy's CA certificate? 2. If would check, is there has anby filebackup - Nginx Mailing List - English
If I removed any one of above five "if" tags, this error information won't display. Maybe it's nginx's issue.?by filebackup - Nginx Mailing List - English
Hi, all. If I add more then four "if" tags in the location part, when I run command "killall nginx" or "/dir/nginx -s stop" to stop nginx process, in the /var/log/messages file I had founded the following error information: Jul 31 10:49:14 localhost kernel: nginx[2314]: segfault at 0000000000000000 rip 00002b0d618c8ce7 rsp 00007fffbcace590 error 4 My OS is Centoby filebackup - Nginx Mailing List - English
我在我自己的机器上使用,没有问题 。晕死。 陈智宏 Wrote: ------------------------------------------------------- > I have already applied php-fpm-0.6~5.2.patch to > php-5.2.12 > > It's worth to try. The new version of fpm is > easier to deploy and the code > is more independent to php source code. > > On Sat, Jan 16, 2010 at 11:19 AM,by filebackup - Php-fpm Mailing List - English
The old patch http://php-fpm.org/downloads/php-5.2.11-fpm-0.5.13.diff.gz I tried this patch, It can also support php-5.2.12. But at first, you need to rebuild configure file try ./buildconf --forceby filebackup - Php-fpm Mailing List - English
./configure --enable-fastcgi --enable-force-cgi-redirect How can I compile PHP? Which flag I need to remove? Did I remove --enable-fastcgi --enable-force-cgi-redirect flag? or What flag I need to add? filebackup, kind regard.by filebackup - Nginx Mailing List - English
Hi. I config my web server with ssl encrypt, when I start Nginx, I noticed nginx will ask me for PEM passphrase, How can I config nginx that can let it automatically enter the passphrase? Regards. filebackupby filebackup - Nginx Mailing List - English
Sorry! For benchmark, you can google it, or can visit the forum of intel corp, the link is http://software.intel.com/en-us/forums/intel-c-compiler/by filebackup - Php-fpm Mailing List - English
another hack is here, Note: not my idea: modify the following code in the sapi/cgi/fpm/fpm_atomic.h file: #elif ( __amd64__ || __amd64 ) to: #elif ( __amd64__ || __amd64 || _M_X64 || __x86_64__ ) But I recommended you compile your application with ICC 10.1.025. I compiled some applicationes with ICC 10.1.025, such as openssl, prce, curl, php, mysql, and more. But when I compilby filebackup - Php-fpm Mailing List - English
My english bad too. Recently, I'd tested intel c++ 11, and I got some errors. My suggestions is here. 1. For AMD cpu, the best choice is PGI c++, but not intel c++. 2. For INTEL cpu, the best choice is intel c++ 10, but not intel c++ 11.by filebackup - Php-fpm Mailing List - English
Dennis, Thank you. I will try it. > location ~ ^/download/.*/config Dennis Brakhane Wrote: ------------------------------------------------------- > > location ~ /download/*/config { > > If I'm not mistaken, this would match > "/download////////config" as well > as "foo/download///config", but not > "/download/foo/config"by filebackup - Nginx Mailing List - English
Hi. Igor. Thank you. > This is was not obvious from your first message: Sorry. I expresses my thoughts unarticulately. > location = /download/config { > deny all; > } if include subdirectory, May I modify it to the following example? location ~ /download/*/config { deny all; } Best Regards. Igor Sysoev Wrote: --------------------------------------------by filebackup - Nginx Mailing List - English
Hi, Igor. location /download/ { deny all; } This rule would deny access to all files, but I only want to deny access to 'config' file. Can modify this rule only deny 'config' file? <Files config> Order deny,allow Deny from all </Files> Thanks. Igor Sysoev Wrote: ------------------------------------------------------- > On Fri, Sep 25, 2009 at 10:03:15AM +0by filebackup - Nginx Mailing List - English
Hi. I want to create an nginx rule, but I don't known how to start off. Please help me. Thanks. the .htaccess file is in the /download/ directory, and the rule is <Files config> Order deny,allow Deny from all </Files> How to convert it to nginx rule? Regards.by filebackup - Nginx Mailing List - English
Gordon Pettey Wrote: ------------------------------------------------------- > On Sun, Aug 16, 2009 at 1:34 AM, filebackup > wrote: > > > > The icc v11.1 is only for intel cpu, but your > server's cpu is AMD. > > Any x86_64 CPU, whether AMD or Intel, is amd64. ruyi7952, I guess he is Chinese. He said that the cpu is amd64 cpu, so I guess the cpu is amd.by filebackup - Php-fpm Mailing List - English
The icc v11.1 is only for intel cpu, but your server's cpu is AMD.by filebackup - Php-fpm Mailing List - English
Hi. Mike. If I don't use php-fpm patch, I can compile php5.2.8 or php5.2.9 or php 5.2.10 with intel c++10. So I think the fpm_children.c file has issue.by filebackup - Php-fpm Mailing List - English
When I make install php5.2.9 or php5.2.10 with intel c++10, it would display the same error: make: *** Error 1by filebackup - Php-fpm Mailing List - English
I had found if I blocked all files, include .php file, I can't open my website. location ~* .*\.*$ { if ($http_user_agent ~* baidu|spider) { rewrite ^/ http://www.mydomain.com/robots.txt; } } If I setup this rule into my nginx.conf file, I can't open my website. So, how can I block spider access to all files? nginx-0.8.3by filebackup - Nginx Mailing List - English
Enjoy the nice time. And thank you for your great codes.by filebackup - Nginx Mailing List - English
Which is right? or are all wrong? Can anyone help me? Thanks.by filebackup - Nginx Mailing List - English
if ($http_user_agent ~* baidu|spider sorry, it need to be added ")". It's if ($http_user_agent ~* baidu|spider)by filebackup - Nginx Mailing List - English
Hi. I setup some rules in nginx.conf, but I don't known which is right, 1 or 2? Please help me, Thanks. 1, location ~* .*\.(jpg|jpeg|gif|png|js|ini|css|xml|ico|swf|bmp|html|htm)$ { if ($http_user_agent ~* baidu|spider { rewrite ^/ http://www.mydomain.com/robots.txt; } if ($http_referer ~* baidu|spider { rewrite ^/ http://www.mydomain.com/robots.txt; } valid_referers none blocked *.mydby filebackup - Nginx Mailing List - English
Now, PHP5.2.10 is stable.by filebackup - Php-fpm Mailing List - English
![]() |
![]() |
![]() |
![]() |
![]() |