You should submit a bug to chromium and give us the URL. I will also add feedback/bump it. That is somewhat irresponsible of them to "assume" behaviors. On Aug 9, 2010, at 9:27 AM, "nginx_newbie" <nginx-forum@nginx.us> wrote: > Dear Igor, > > Problem Solved!!!! > > Chrome does not show very small page to the > browser and the browser simply generateby mike - Nginx Mailing List - English
This has to do with apc not fpm. They made some changes in the new version and I believe he said on irc "test the hell out of it" You probably want to bring this up on the php general or possibly php dev/internals list or #php.pecl on efnet. On Aug 8, 2010, at 11:35 AM, "nofun" <nginx-forum@nginx.us> wrote: > I have a running Ubuntu 10.04 with php 5.3.3 and fpm comby mike - Php-fpm Mailing List - English
On Thu, Aug 5, 2010 at 10:41 AM, Raina Gustafson <raina@thequeensmen.com> wrote: > 1. I'm using Magento. I am willing to use plugins/extensions, and will > apply local overrides/customizations, but don't want to alter the code > base to the point of having difficulties with upgrading, etc. That's my policy - never alter the core. Always extend with plugins/modules/whatever. OO-basby mike - Nginx Mailing List - English
On Thu, Aug 5, 2010 at 3:40 AM, Grzegorz Nosek <grzegorz.nosek@gmail.com> wrote: > Would you expect it to be processed after static requests only or also > after *_pass? I don't know :) All I know is I want to apply rules like expires headers and such at the very end - those could be CSS/JS files being generated on the fly by PHP for instance (which is horrible, but oh well) and I'dby mike - Nginx Mailing List - English
On Thu, Aug 5, 2010 at 3:16 AM, Grzegorz Nosek <grzegorz.nosek@gmail.com> wrote: > type text/css { > expires max; > } > > I think it's quite clean and conveys the idea better than: > > location ~ \.css$ { > expires max; > } I won't say that I am absolutely in support of this, just wanted to add in my few cents on what the syntax should be, if it was to be somby mike - Nginx Mailing List - English
Thu, Aug 5, 2010 at 1:49 AM, Grzegorz Nosek <grzegorz.nosek@gmail.com> wrote: > It won't help at all in that case. The proposed types would be a feature > of the static module. It wouldn't be useful in single-huge-site > deployments, only for sites running on a single server (Nginx+PHP). or massive sites that use nginx+php/php-fpm on the same node. it's a nice (and common) practicby mike - Nginx Mailing List - English
On Thu, Aug 5, 2010 at 1:10 AM, Grzegorz Nosek <grzegorz.nosek@gmail.com> wrote: > I like your proposed syntax much better, actually. Of course :) I'm a smart guy! It's sort of a meta/fake location, so a location block doesn't make sense. It maps to types, so a "type" keyword makes sense :) _______________________________________________ nginx mailing list nginx@nginx.org htby mike - Nginx Mailing List - English
On Thu, Aug 5, 2010 at 12:17 AM, Grzegorz Nosek <grzegorz.nosek@gmail.com> wrote: > location @application/x-httpd-php { > fastcgi_pass ...; # etc. > } I think this would be more appropriate, personally: type application/x-httpd-php { fastcgi_pass ...; # etc. } it's not really a location, and needing to use the "@" for prefixing a named location... all that seems lby mike - Nginx Mailing List - English
Yeah I expect nginx to only be aware of the filesystem it has access to. So open_file_cache saves stat calls? How do you invalidate the cache if a file is removed? Or if I put a new file that wasn't there I want it to instantly show up not 404 for a while? Apologies if you've covered this already. On Aug 4, 2010, at 11:38 PM, Igor Sysoev <igor@sysoev.ru> wrote: > On Wed, Aug 04, 2010 atby mike - Nginx Mailing List - English
On Wed, Aug 4, 2010 at 2:44 PM, Ed W <lists@wildgooses.com> wrote: > However, all the default configs that I have seen for PHP setups on the > wiki, etc, seem insecure to my mind. They nearly all point *all* files > named xx.php to be processed by the your php interpreter. Coupled with > nearly all non trivial applications having some "upload" feature this allows &by mike - Nginx Mailing List - English
Well magento is not known to be the best piece of software. I may be working with magento and nginx soon but not sure. Was looking forward to seeing how I could tame that beast. Php-fpm itself isn't a memory hog it's a combination of the php built-ins, modules, and configuration and then the code itself. I have certain pools that average more ram per process than others - it is most likely due tby mike - Nginx Mailing List - English
I personally don't use location / unless absolutely needed. On Aug 4, 2010, at 8:07 AM, Raina Gustafson <raina@thequeensmen.com> wrote: > So far, so good. I'd tried this location previously, but hadn't tested > with the variable dump, so didn't think it was working. I removed it > from location /, and it is still working. location ~ \.php$ alone > seems to be adequate, and eachby mike - Nginx Mailing List - English
On Tue, Aug 3, 2010 at 4:45 PM, Raina Gustafson <raina@thequeensmen.com> wrote: > Ok, great. I just noticed that the Magento config listed on the Nginx > Wiki is way different than the one I'd grabbed from the Magento > forums. I'll wade through those differences in a little while and see > if I can reconcile them intelligently. btw where do you define this value? fastcgi_paramby mike - Nginx Mailing List - English
On Tue, Aug 3, 2010 at 4:45 PM, Raina Gustafson <raina@thequeensmen.com> wrote: > Ok, great. I just noticed that the Magento config listed on the Nginx > Wiki is way different than the one I'd grabbed from the Magento > forums. I'll wade through those differences in a little while and see > if I can reconcile them intelligently. > > I don't have a solid understanding of thiby mike - Nginx Mailing List - English
yeah, var_dump($_SERVER) - should show you normal variables. Do you see $_SERVER['HTTPS']? I think the key location you're missing is putting it in here: location ~ \.php$ { ## Execute PHP scripts expires off; ## Do not cache dynamic content fastcgi_param HTTPS $fastcgi_https; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATHby mike - Nginx Mailing List - English
A quick note your fastcgi_param should do it. Are you sure it's in all the locations it needs to be? It should expose those as $_SERVER variables. On Aug 3, 2010, at 2:04 PM, Raina Gustafson <raina@thequeensmen.com> wrote: > I've tried several variations, but haven't been able to get this > working. The virtual hosts are set up fine, and both domains will load > a home page, butby mike - Nginx Mailing List - English
On Tue, Jul 27, 2010 at 1:19 PM, Xeross <xeross@theelitist.net> wrote: > Hey, > > I tried setting up the Apache HTTPD together with the FastCGI module > and PHP-FPM however all I got was blank pages, none of the logs I > looked at (Syslog, php, apache) gave any errors. > > Now I'm not sure if the following setup is possible with PHP-FPM so > I'll just ask that first &by mike - Php-fpm Mailing List - English
On Tue, Jul 27, 2010 at 10:05 AM, Rodrigo Dlugokenski <rddweb@gmail.com> wrote: > I tried another approach, installing php-cgi. > > I figured out now, because in my browser php-cgi returned "No input > file specified". Then i figured that something was wrong in my > nginx.conf. > > I need to change fastcgi_param SCRIPT_FILENAME /srv/http/nginx/ > $fastcgby mike - Php-fpm Mailing List - English
On Tue, Jul 27, 2010 at 4:02 AM, Andrea Soracchi <soracchi@netbuilder.it> wrote: > Hello, > > I have seen the module "Nginx limit proxy" > (http://nginxlimitproxy.sourceforge.net/) > > It's a valid module? works fine? looking at it quick I see two things that interest me right off the bat: 1) I've been wanting a way to capture how many bytes (and requests) by Hoby mike - Nginx Mailing List - English
You asking if php 5.3.3 has include support in the conf? Yes. :) On Jul 24, 2010, at 10:07 AM, Dayo <dakanji@gmail.com> wrote: > Noticed the patch is up ... Thanks. > > Separate issue ... Will be possible to include other files into the > new fpm conf as in nginx.by mike - Php-fpm Mailing List - English
On Sat, Jul 24, 2010 at 1:14 AM, Dayo <dakanji@gmail.com> wrote: > I hope the old site will put up a 5.2.14 patch despite the 5.3.3 fpm > inclusion. I still have to use 5.2.x myself, so I definitely want to make sure it is an option, I just haven't had time with OSCON to try to compile it. Typically the old patch still works. I say -typically- as there was one change that had to be maby mike - Php-fpm Mailing List - English
On Thu, Jul 22, 2010 at 3:09 PM, Brian Bruns <brian@bruns.com> wrote: > Hi Michael, > > We're still here at OSCON if you want to stop by. > > It's intended for use in applications, so it's really no different > than using the native database APIs vis-a-vis security, all the same > concerns apply. We just make it easier to get to the database. > > Brian Applicatiby mike - Nginx Mailing List - English
On Thu, Jul 22, 2010 at 2:49 PM, Vlad Didenko <vlad@dbrelay.com> wrote: > DB Relay is an open source project built around the NGiNX web server platform, providing an HTTP/JSON interface to a variety of database servers. It enables database access without drivers and web application development without complex middleware. Designed for operational efficiency and ease of maintenance. > &gby mike - Nginx Mailing List - English
I was waiting for 5.3.3 to get released any day now. much nicer than having to tell people "5.3.3rc1+" On Thu, Jul 22, 2010 at 11:11 AM, Mathew Davies <thepixeldeveloper@googlemail.com> wrote: > Just to let you know, FPM is included in > 5.3.3: http://www.php.net/ChangeLog-5.php >> >> Added FastCGI Process Manager (FPM) SAPI. (Tony) > > Thanks for all theby mike - Php-fpm Mailing List - English
I have sites that get crawled and analyzed by mcafee secure. They consider the site to be out of compliance without it. On Jul 15, 2010, at 6:04 PM, Alexandr Sergeyev <asergeyev@dyn.com> wrote: >> It is very easy to follow; bravo! >> It appears that nginx does not like my key. > > Try to use only crt file for ssl_certificate directive. You may append godaddy's CA later.by mike - Nginx Mailing List - English
I have no clue. All I know is mine has worked a lot :) On Jul 15, 2010, at 3:45 PM, Audrey Lee <audrey.lee.is.me@gmail.com> wrote: > Michael, > > Thanks for the writeup. > It is very easy to follow; bravo! > > It appears that nginx does not like my key. > > I created it using instructions from godaddy: > > deploy@domU-12-31-38-00-95-21 ~ $ openssl genrsa -by mike - Nginx Mailing List - English
On Thu, Jul 15, 2010 at 2:16 PM, Audrey Lee <audrey.lee.is.me@gmail.com> wrote: > Hello nginx people. > > I want to use nginx to serve https for my site. > 1) Generate the CSR: openssl genrsa 2048 > yourhost.com.key openssl req -new -key yourhost.com.key > yourhost.com.csr 2) Enter in only a couple pieces of information: Country Name (2 letter code) :US State or Provinceby mike - Nginx Mailing List - English
On Wed, Jul 14, 2010 at 8:04 PM, Peter Portante <peter.a.portante@gmail.com> wrote: > We have not measured performance with this change, but just the fact that > you don't make a log file entry in the error.log is probably a win in and of > itself, I would think. I try to use it wherever possible as Igor recommends it but right now Drupal doesn't cooperate. That's why I am hopingby mike - Nginx Mailing List - English
I am trying to generate a following in getting a small modification added to Drupal that would allow it to work with try_files, as it doesn't right now (full explanation here: http://drupal.org/node/827236) I am wondering though, exactly how many syscalls or savings per request you get from using try_files instead of if (!-e $request_filename) ? It would be interesting to be able to reference somby mike - Nginx Mailing List - English
On Wed, Jul 14, 2010 at 4:17 PM, Gilles Ganault <gilles.ganault@free.fr> wrote: > On Wed, 14 Jul 2010 17:58:20 +0300, bvidinli > <bvidinli@gmail.com> wrote: >>ehcp is also going to release an easy installer for nginx. > > BTW, out of curiosity, at this point, what do people use to run PHP5 > with Nginx on production servers? PHP's built-in FastCGI server, some >by mike - Nginx Mailing List - English
![]() |
![]() |
![]() |
![]() |
![]() |