At some point maybe I can rally funds for igor himself. He's on my list. Much easier for companies to give money than individuals. I would like to get my company to donate. I'll have to wait until next quarter though for more budget. On May 25, 2009, at 1:46 PM, "Floren Munteanu" <nginx@yqed.com> wrote: > Hi Johan, > >> -----Original Message----- >&by mike - Nginx Mailing List - English
2009/5/25 Johan Bergström <johan@bergstroem.nu>: > Why involve a http stack at all when svn or svn+ssh can handle this for you? > Point is: No software covers your individual need, thats why you use more > than one application. There are certain programs that work better with svn over http, I do not believe Eclipse easily works using svn+ssh, especially when it comes to cby mike - Nginx Mailing List - English
2009/5/25 Igor Sysoev <is@rambler-co.ru>: > At least not in foreseeable future. > I do not see any perfomance benefits of SVN in nginx. It's not really performance benefits but simplifying the software stack. Why involve nginx+proxy to Apache if nginx could handle both?by mike - Nginx Mailing List - English
+1 this has been on my wishlist too. Not to put all the pressure on Igor either, anyone can obviously contribute code towards it... sometimes I feel like we're constantly asking for more more more. If I knew any C I'd try my best to help. On Mon, May 25, 2009 at 11:03 AM, Floren Munteanu <nginx@yqed.com> wrote: > I intend to speak at the next Zendcon conference about Nginx andby mike - Nginx Mailing List - English
On Fri, May 22, 2009 at 10:31 AM, Jim Ohlstein <jim.ohlstein@gmail.com> wrote: > location ^~ /ppg/ { > auth_basic "Hello, Please login"; > auth_basic_user_file /var/www/site.com/passwords; > location ~ .\php$ { > include /etc/nginx/fastcgi_params; > fastcgi_pass 127.0.0.1:9000; > } > } >by mike - Nginx Mailing List - English
location /foo { auth_basic .. auth_bsic_user_file ... location ~ \.php { } } is how i've done it. you have to nest the php again inside of it, but otherwise treat it no differently. igor - you should make some sort of syntax for a globally effective location or something - one that takes effect *always* within a server block, at the end. this would help for parsing PHP *alby mike - Nginx Mailing List - English
I removed it. It was probably a legit site, but the guy let his domain expire and a domain monger nabbed it. Since it is a wiki it should be open for anyone to sign up and edit the pages. Unless Cliff locked it down for some reason, but afaik he hasn't. On Fri, May 22, 2009 at 9:11 AM, Kurt Hansen <khansen@charityweb.net> wrote: > Hello, > > There is an inaccurate linby mike - Nginx Mailing List - English
Igor would probably ask at this point for a debug log. If this continues to happen I would compile nginx --with-debug and have a way to log when it crashes if you can. You can limit who triggers debugging by IP too by using debug_connection, otherwise you will have immensely large logfiles, but at least you'd possibly be able to track down the event and have the info Igor would probably beby mike - Nginx Mailing List - English
all i can say is... wow. nginx has never crashed on me. congrats? :) i would provide your version info, that might help first off. On Thu, May 21, 2009 at 1:20 PM, Payam Chychi <pchychi@gmail.com> wrote: > Hey guys, > > Nginx crashed 2 times on 2 of my proxy servers... no errors in logs > and i cant figure out why the crash took place. I do see from my rrd > fileby mike - Nginx Mailing List - English
i was going to say this is the typical "check your SCRIPT_FILENAME" but you already know that. this is an interesting question. Igor would it be possible to intercept this (or with a combination from php-fpm/the SAPI) to detect these errors and present the 404 (or appropriate) handler defined? either nginx default 404 or in the case of error_page being set using that one (like aby mike - Nginx Mailing List - English
2009/5/20 Igor Sysoev <is@rambler-co.ru>: > Probably WordPress gets URI from REQUEST_URI. Yeah, WordPress handles it a little bit better, and accepts multiple styles of input and figures it out. Drupal is a bit more strict. Both work fine with $args, but Drupal seems to require $args.by mike - Nginx Mailing List - English
2009/5/20 Igor Sysoev <is@rambler-co.ru>: > No, I meant how does Drupal go with trailing "&", if an original request > has no query string at all, say > > /some/page.html > > will be //foo/index.php?q=/some/page.html& I think this assumes Drupal is running with friendly URLs enabled, which are extensionless, and also, the PHP script will see thby mike - Nginx Mailing List - English
+! for 0.7.x been running it since i started, no complaints. On Tue, May 19, 2009 at 10:07 AM, Cliff Wells <cliff@develix.com> wrote: > On Tue, 2009-05-19 at 12:00 -0500, AMP Admin wrote: >> I'm on 0.6.35... is this the suggested version to be running? > > Depends on who you ask. Some prefer the stable series, others (like > me) prefer the development branch.by mike - Nginx Mailing List - English
correct. i might be spacing out but this is: a) a php extension (easy enough to compile) b) a mysql UDF piece (not so easy to get in) On Mon, May 18, 2009 at 12:52 AM, Antony Dovgal <tony@daylessday.org> wrote: > > On 18.05.2009 00:39, Michael Shadle wrote: >> or 5.2... >> >> problem is, i have a custom php configuration including php-fpm and suhosin. >by mike - Php-fpm Mailing List - English
It's probably matching the .php first. Put that in a location / block so devkit can be found first. On May 17, 2009, at 3:05 PM, Mathew Davies wrote: > Hi, > > I am using try_files in a subdirectory and I'm coming up with some > issues. > > # default > server > { > server_name localhost; > > location ~ \.php$ > { > try_fby mike - Nginx Mailing List - English
or 5.2... problem is, i have a custom php configuration including php-fpm and suhosin. if this was a shared module with all the stuff like ioncube etc... that'd work. On Sun, May 17, 2009 at 1:32 PM, Kiril Angov <kupokomapa@gmail.com> wrote: > > Or just have pre-compiled binaries for the latest stable 5.1.x? > > On Sat, May 16, 2009 at 4:22 AM, Michael Shadle <mikby mike - Php-fpm Mailing List - English
So we don't have to use mod_dav_svn with Apache.by mike - Ideas and Feature Requests
Already underway - I've got a guy at RentACoder working on it, and I'll be trying to get it to a point when we can release it and let other people fix it up, test it, etc.by mike - Ideas and Feature Requests
I will say I did notice the behavior for Drupal and possibly other apps that require GET parameters. I've noted it in a blog post: http://michaelshadle.com/2009/05/15/dont-forget-the-args/ 2009/5/16 Igor Sysoev <is@rambler-co.ru>: > On Sat, May 16, 2009 at 07:58:21PM +0200, Claude Bing wrote: > >> Can I just exclude a directory from rewrite? >> I suppose I can moby mike - Nginx Mailing List - English
We've got drupal going with a simple try_files $uri $uri/ /path/to/ drupal/index.php?q=$uri&$args; In nginx 0.7 of course. On May 16, 2009, at 9:09 AM, Claude Bing wrote: > Ok, I followed a tutorial online and was trying to get rewrite > working on my server. Well, everything works ok except for my Photo > gallery which is located in | /gallery |. I'll include myby mike - Nginx Mailing List - English
cool, we'll be running redmine soon too, hopefully. however we have to run a perl script inside of nginx before passing off to redmine (it decrypts our authentication cookie) which hopefully will be supportable... On Fri, May 15, 2009 at 7:27 PM, sbwoodside <nginx-forum@nginx.us> wrote: > I prefer to not use one-liner in blocks as above since it does not allow to > comment ouby mike - Nginx Mailing List - English
I would love to use this, but the custom MySQL configuration makes it impossible, I use MySQL from distribution repositories. :( Is there a way to make a more generic version? i.e. set pinba.address in php.ini to point to the collection server, and the collection server has the daemon listening on UDP and can dump data into mysql using a defined configuration? That'd be great. :) Onby mike - Php-fpm Mailing List - English
2009/5/14 Igor Sysoev <is@rambler-co.ru>: > No, by "configuration macros" I meant nginx built-in macros, but not > using exteranl tools such as make, sed, etc. Correct, I don't consider external tools to be anything you'd be concerned with :) I meant the whole if ($1 == 'foo') { include something.conf; }by mike - Nginx Mailing List - English
yeah i have a script to build some configs already. but to match production i have to pull out the common stuff and put it into .conf files, and then set $var something; include foo.conf; so that the configs match on dev and production but the dynamic pieces are filled in appropriately per user/environment. On Thu, May 14, 2009 at 2:01 PM, Cliff Wells <cliff@develix.com> wrote: >by mike - Nginx Mailing List - English
On Thu, May 14, 2009 at 12:32 PM, Maxim Dounin <mdounin@mdounin.ru> wrote: > As of now nginx has no variables expanded during config loading - > everything expaneded during request processing. So using > variables just to save some config lines is somewhat stupid as it > means wasting lots of CPU time for every request. > > If you really need to simplify configs -by mike - Nginx Mailing List - English
I do this, for fastcgi ports currently. Igor says it is supported, but I am running into an issue and I can't reproduce it yet but it is happening (today I actually have to fix it) You can do this as long as the parameter you are using supports variables. I am not sure if all of them do or not. The error_log might not for example; not sure. Might be a nice thing to add to the wiki, underby mike - Nginx Mailing List - English
sorry, i can't reproduce this at the moment. a co-worker had reported it, now i need to see if it happens again. 2009/5/12 Igor Sysoev <is@rambler-co.ru>: > On Tue, May 12, 2009 at 12:07:10PM -0700, Michael Shadle wrote: > >> neither of these work. it only takes the first $port, the second one is ignored >> >> set $port 11019; >&by mike - Nginx Mailing List - English
what don't you understand? we don't understand you, ENGLISH only please. 2009/5/12 "坏人" <nginx-forum@nginx.us>: > 不知道sites.conf的内容。不过看起来你是想动态设置监听端口,这是不行的,重设监听端口必须重启服务 > > Posted at Nginx Forum: http://forum.nginx.org/read.php?2,1981,1984#msg-1984 > > >by mike - Nginx Mailing List - English
neither of these work. it only takes the first $port, the second one is ignored set $port 11019; root /home/foo/web/bar.com; include /etc/nginx/expires.conf; include /etc/nginx/confs/phpmyadmin.conf; location /sites { set $port 11003; include /etc/nginx/confs/sitby mike - Nginx Mailing List - English
I tried Google to translate this but I can't understand it still... English please? :) 2009/5/11 "坏人" <nginx-forum@nginx.us>: > 先把perl编译进nginx中。perl_modules是路径,perl_require是调用的文件 > 这个示例没什么用啊,你要实现什么功能? > nginx里perl的用法和*nix下的没多大区别,稍作修改就可以用了 >by mike - Nginx Mailing List - English