Unless someone does it on their own, 5.2.x will never change again. Nobody who knows the code has availability or interest. On note #2, not sure if query string is a good idea to capture. That will make the list extremely long in a lot of setups. If you use apc you can dump a list of scripts in the cache. Just as a random side note. :) On Apr 14, 2011, at 2:30 AM, Imre Rad <psychrist666@gmaiby mike - Php-fpm Mailing List - English
Now that svn is exposed it should be s lot easier to contribute :) On Apr 12, 2011, at 8:34 AM, SplitIce <mat999@gmail.com> wrote: > Nice milestone hopefully this milestone will result in some feature development (Hint: HTTP 1.1 keepalive backend) now that the core is considered stable. > > Thank you as always Igor for your hard work. > > SplitIce > > 2011/4/12 Igoby mike - Nginx Mailing List - English
include isn't supported inside of "if" either, I believe. I wanted to do conditional includes before - but ran into a wall. Someone I believe replied to me off list and said they were trying to add support for that though. (I think it might be how the configuration parser works. $hostname is unknown when the server starts up, and it includes all the includes at the time of start?) I doby mike - Nginx Mailing List - English
We have a server that was running 0.8.53, and a new one running 0.8.54. A consuming application written in .NET that used to work is now failing. The only difference should be the change in the version of nginx. The error the development team is reporting is something to do with the HTTP headers being malformed and not having full CRLFs. Apparently that doesn't work well with .NET's web request mby mike - Nginx Mailing List - English
what OS? i don't have to feed --with-libevent on my setup, never have - using the 5.2.x patch on Ubuntu and CentOS systems. On Fri, Feb 18, 2011 at 3:50 AM, Eberx <tseveendorj@gmail.com> wrote: > Hello, > > I'm newbie on compiling php and php-fpm from source. I faced trouble. > > PHP 5.2.17 http://www.php.net/get/php-5.2.17.tar.gz/from/us.php.net/mirror > PHP-FPM httpby mike - Php-fpm Mailing List - English
On Feb 9, 2011, at 12:35 PM, Jérôme Loyet <jerome@loyet.net> wrote: > for the same reasons they both exist on apache module (SYSTEM --> >> > don't let ini_set() function to change the value, USER --> to let > ini_set() to change the value Ah. So if I define as admin it wont let the user override at all. I thought that was keyed in to the ini level, not the users abiby mike - Nginx Mailing List - English
2011/2/9 Jérôme Loyet <jerome@loyet.net>: > Revision 298383, on Fri Apr 23 16:05:52 2010 UTC. see bug 51595 Is it in a specific PHP version (5.3.3, 5.3.4, 5.3.5)? Sorry if I'm not savvy parsing through the logs to determine when it got committed. I'd like to blog about this so more people know about it (including myself :)) PHP_ADMIN_VALUE technically allows any PHP_INI_SYSTEM overridby mike - Nginx Mailing List - English
When was this implemented? What version of fpm would help. On Feb 9, 2011, at 12:07 PM, Jérôme Loyet <jerome@loyet.net> wrote: > 2011/2/9 Michael Shadle <mike503@gmail.com>: >> It would be in mail archives somewhere. Either here or on the php-fpm list. >> No clue on status or if it ever was done or will be done. I'm not in a >> position to google things right nby mike - Nginx Mailing List - English
It would be in mail archives somewhere. Either here or on the php-fpm list. No clue on status or if it ever was done or will be done. I'm not in a position to google things right now. For all I know it was just a spitball idea. On Feb 9, 2011, at 10:57 AM, Jim Ohlstein <jim@ohlste.in> wrote: > > On Feb 9, 2011 1:31 PM, "Michael Shadle" <mike503@gmail.com> wrote: >by mike - Nginx Mailing List - English
I think Jerome was working on a fastcgi_param method to alter ini directives from the nginx conf. IIRC. On Feb 9, 2011, at 7:54 AM, Piotr Karbowski <jabberuser@gmail.com> wrote: > On 02/04/2011 05:30 PM, lifeisjustabout wrote: >> Hi, >> >> Is there any command that i put in conf file to turnoff warning message >> of joomla. >> >> for instance in apaby mike - Nginx Mailing List - English
On Tue, Feb 8, 2011 at 8:15 PM, frankiekam <nginx-forum@nginx.us> wrote: > Hi > > Anyone experienced running Moodle under Nginx instead of Apache? Moodle runs just fine (as fine as it can, I am not a fan) > If yes, > 1) how to get fastest possible Moodle access under Nginx? I don't think it requires anything special off the top of my head. If it supports friendly URLs, thenby mike - Nginx Mailing List - English
Why would you have an extensionless file on the filesystem? Seems kinda funky to do it that way. I'm wondering if you need to pass more fastcgi_params. I don't know. Personally I'd rename the file to have a .php and just pass the requests through the webserver using rewrites (you won't lose any functionality.) On Sun, Jan 30, 2011 at 1:17 PM, Per Hansson <nginx-forum@nginx.us> wrote: >by mike - Php-fpm Mailing List - English
On Wed, Jan 26, 2011 at 9:23 PM, Edho P Arief <edhoprima@gmail.com> wrote: > I believe one of the solution is adding > > try_files $uri =403; It adds another stat call or two but I believe it's acceptable (and the stat calls are cached using open_file_cache > And the other is to not use php at all :) Blasphemy! You can also use something Igor had mentioned using named capturby mike - Nginx Mailing List - English
it's not a vulnerability with nginx, it's a widespread configuration misstep teamed up with what I consider to be somewhat lazy application code (it should check filetype and/or convert and normalize it to site specifications and/or strip extra stuff inside of it ...) there's a couple different ways to address it with nginx configuration, and there is a way to address it in application code too.by mike - Nginx Mailing List - English
http://bugs.php.net/bug.php?id=52569 Jerome and mplomer have been hacking away for a bit on it. They use the bug tracker for updates/discussion. On Sun, Jan 16, 2011 at 7:54 PM, Anatoly Pashin <anatoly.pashin@gmail.com> wrote: > Is it really in work (PHP developers might not think same)? Where can > we see status? > I think it's important feature. PHP developers proof message isby mike - Php-fpm Mailing List - English
You're wanting to emulate suexec basically? What I do is setup one pool per user, and in the webserver level, push requests to the appropriate pool (each one has a unique TCP port) the "ondemand" method that is being worked on will allow for not-as-fixed pools to be created so there's not a lot of idle resources being wasted (for shared hosts with tons of users) On Sun, Jan 16, 2011by mike - Php-fpm Mailing List - English
Slightly off topic but the @fallback is redundant. You can replace it with /index.php - no need for a named location with no special behaviors or needs. On Jan 14, 2011, at 9:11 AM, "Juan Fco. Giordana" <juangiordana@gmail.com> wrote: > On 01/14/2011 12:41 PM, 任晓磊 wrote: >> send your nginx.conf here > > Helo Ren, > > I don't have any fancy stuff in thby mike - Php-fpm Mailing List - English
Any decent command line examples using ffmpeg or other Linux capable CLI utils that scrub/hint/work? :) On Jan 8, 2011, at 1:07 PM, Fernando Perez <lists@ruby-forum.com> wrote: > flvtool2 only works for ... flv files!7 > > But yes, you may have to use such tool. It depends what spits out your > videos. > > Also make sure your videos have keyframes. > > For instby mike - Nginx Mailing List - English
By hinted do you mean running it through flvtool2 for example? On Jan 8, 2011, at 12:24 PM, Fernando Perez <lists@ruby-forum.com> wrote: > Hi, > > You can check out the html code at http://digiprof.tv > > On the server side, it is simply a matter of compiling Nginx with an mp4 > module. > > Remember to have your videos hinted, or they won't allow to be scrubbed.by mike - Nginx Mailing List - English
On Wed, Dec 22, 2010 at 4:43 PM, David J. <david@styleflare.com> wrote: > I was wondering why some sites have > > <script src="path/to/javascript.js?432532432"></script> > > What is the "?432532432" or whatever used for? Is it a versioning thing. > > I see it on many of the bigger sites. > > <link href="/css/layout.css?12919by mike - Nginx Mailing List - English
Igor - any way that this could be implemented? Variable expansion for auth_basic? Or do you have any other ideas? On Sat, Dec 4, 2010 at 2:58 PM, Michael Shadle <mike503@gmail.com> wrote: > On Sat, Dec 4, 2010 at 7:41 AM, Eugaia <ngx.eugaia@gmail.com> wrote: > >> I've not tested it, but I had a quick look at the code and it appears that >> auth_basic doesn't accept vby mike - Nginx Mailing List - English
On Sun, Dec 5, 2010 at 5:21 PM, Duane Mulder <duanemulder@rattyshack.ca> wrote: > So nginx so far has been running great. Today however I discovered that > when downloading a file larger than 1G (ie 1.5G) it will always fail > leaving the client with a file of 1.1G and an incomplete download. If I > point directly to the webserver the download completes properly. > Downloadby mike - Nginx Mailing List - English
On Sat, Dec 4, 2010 at 7:41 AM, Eugaia <ngx.eugaia@gmail.com> wrote: > I've not tested it, but I had a quick look at the code and it appears that > auth_basic doesn't accept variables (yet), so regardless of the setting > mechanism, I don't think it will work. > > Adding variable support to auth_basic, though, could be useful it seems. Since it isn't important enough to compby mike - Nginx Mailing List - English
On Fri, Dec 3, 2010 at 1:07 PM, Boris Dolgov <boris@dolgov.name> wrote: > No, it shouldn't. > > You can jump to named location inside if statement, and change authorization > configuration there. So are you saying something like if ($http_via ~* ".somehost.net") { rewrite @protected permanent; } location @protected { auth_basic etc. } wouldn't I have to defineby mike - Nginx Mailing List - English
I thought of that - care to show an example of what you mean in pseudo config? The way I was thinking about it might be wrong. On Dec 3, 2010, at 1:07 PM, Boris Dolgov <boris@dolgov.name> wrote: > No, it shouldn't. > > You can jump to named location inside if statement, and change authorization configuration there. > > 2010 12 4 00:05 пользователь "Michaeby mike - Nginx Mailing List - English
On Fri, Dec 3, 2010 at 1:00 PM, Eugaia <ngx.eugaia@gmail.com> wrote: > auth_basic $realm; This is still the problem... auth_basic doesn't seem to accept variables. If so, my original post -should- work. It still relies on that. _______________________________________________ nginx mailing list nginx@nginx.org http://nginx.org/mailman/listinfo/nginxby mike - Nginx Mailing List - English
Got this idea off IRC, but it looks like variables don't expand: set $realm "enter your password"; if ($http_via ~* ".somehost.net") { set $realm off; } auth_basic $realm; auth_basic_user_file /etc/nginx/confs/htpasswd.test; Any ideas on how to do conditional auth? auth_basic and such is not allowed under "if" ... trying to figure out some way to dynamicaby mike - Nginx Mailing List - English
Thank to all of you guys, especially you Jérôme! This is awesome. On Dec 2, 2010, at 5:00 PM, Jérôme Loyet <ml@fatbsd.com> wrote: > Hi everybody, > > the PHP team has just released the RC2 of the next 5.3 version > (5.3.4RC2). It comes with several FPM enhancements and bug fixes. > > > Bug Fixes > ************ > - Bug 52476. The php-fpm man page has been mby mike - Php-fpm Mailing List - English
On Thu, Dec 2, 2010 at 6:47 AM, <witekfl@gazeta.pl> wrote: > Thanks. > php still segfaults, anyway. > It is 5.2 with the php-fpm backported from 5.3 SVN with the XML configuration yet. > Perhaps, I made a mistake somewhere. 5.2 only has a patch 5.3 has svn for pre-5.3.3, after that it is bundled with PHP core (and highly recommended) Also - a) You should probably take this tby mike - Nginx Development
On Wed, Dec 1, 2010 at 7:31 PM, Omar Kilani <omar.kilani@gmail.com> wrote: > Hi Michael, > > You should be able to get a list of subnets from your CDN, which you > can add to 'set_real_ip_from'. This way, you'll get the first > untrusted IP in the chain -- the scan works backwards, so even if your > XFF looked like: > > X-Forwarded-For: proxy1 proxy2 client1 > >by mike - Nginx Mailing List - English