The goal: To use headers/metadata from the incoming mail message to determine if delivery should be allowed based on the recipients of the message. Example: development/test environments, only allow whitelisted recipients to get messages. I couldn't find any packages, SaaS services or other options out there (except Mandrill with their "rules" capability, but there is no API to manage tby mike - Nginx Mailing List - English
On Tue, Aug 27, 2013 at 4:15 AM, Kozák György <gyorgy.kozak8@gmail.com>wrote: > Hello Everyone! > > I just build a system with php-5.3 and 5.4 with fpm. > It now both working with a similar config files. > But 5.2.17 after compile requires a xml configuration file. Is there any > solution with can get to work with the ini file-style? > no, the php-fpm for 5.2 has a cby mike - Php-fpm Mailing List - English
On Tue, Aug 27, 2013 at 4:15 AM, Kozák György <gyorgy.kozak8@gmail.com>wrote: > Hello Everyone! > > I just build a system with php-5.3 and 5.4 with fpm. > It now both working with a similar config files. > But 5.2.17 after compile requires a xml configuration file. Is there any > solution with can get to work with the ini file-style? > > -- --- You received thiby mike - Php-fpm Mailing List - English
When I was putting the request body into a variable I was having issues... I want to say we ran out of memory. Now we use plupload and try to have the client chunk the data, you get upload progress, and not one long transaction that can fail like typical standard file upload. On Aug 15, 2013, at 9:00 AM, nhadie ramos <nhadie@gmail.com> wrote: > Hi All, > > I am doing some compby mike - Php-fpm Mailing List - English
http://w3techs.com/blog/entry/nginx_just_became_the_most_used_web_server_among_the_top_1000_websites _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginxby mike - Nginx Mailing List - English
This is a long time coming - I wanted to reply, I funded a project to try to get GSSAPI/SPNEGO support into nginx. The developer didn't know Kerberos nor nginx - but tried his best to get it to work. I could never get it to work, but my company's AD/Kerberos setup is confusing even for an Apache setup (especially since I do not have admin access to the domain and such) Anyway, that code is up hby mike - Nginx Mailing List - English
I just do server { listen 80; server_name was.foo.com; rewrite ^ http://foo.com$uri permanent; } On May 6, 2013, at 9:40 AM, Aleksandar Lazic <al-nginx@none.at> wrote: > Dear readers, > > after reading > > http://nginx.org/en/docs/http/server_names.html#regex_names > > and googleing > > https://www.google.at/search?q=nginx+remove+www+subdomain >by mike - Nginx Mailing List - English
On Thu, Sep 27, 2012 at 11:09 AM, Sean Noonan <stnoonan@obsolescence.net> > I've made a variety of changes to the module, available at > https://github.com/stnoonan/spnego-http-auth-nginx-module Sean - thank you for helping improve this, I haven't had much luck getting people to fix the issues/test it/etc. since I originally posted it (even though I had initial interest in it) As sucby mike - Nginx Mailing List - English
I believe all you need is the trailing slash location /POLL { proxy_pass http://127.0.0.1:8081/; } location /RADIOEDIT_REST { proxy_passhttp://127.0.0.1:19384/RADIOEDIT_REST/; } location / { proxy_pass http://127.0.0.1:8080/; } On Sep 8, 2012, at 11:16 AM, "Larry P." <lists@ruby-forum.com> wrote: > locatiby mike - Nginx Mailing List - English
Maxim, I knew the ABI reasoning was behind it as this has came up at least once before. Just wanted to express it again. Curious how tengine does it with very small performance loss still based off the nginx code base. Perhaps something to look at? :) that's all. _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginxby mike - Nginx Mailing List - English
the basic concept of "modules" are pluggable instruments to extend something else. having to compile it in makes it less modular. DSO support would make package management in distributions seamless. minor differences in any one single module means you need to recompile the entire binary for that small change instead of a single .so for example being changed and the server gracefully reby mike - Nginx Mailing List - English
I would love to see and even pledge a bounty (if Igor, Maxim and team even need any money anymore! :p) to get DSO into nginx mainline... On Wed, Sep 5, 2012 at 10:19 PM, David Yu <david.yu.ftw@gmail.com> wrote: > > > On Thu, Sep 6, 2012 at 1:06 AM, Joshua Zhu <zhuzhaoyuan@gmail.com> wrote: >> >> Hi folks, >> >> We are excited to announce that Tengine-by mike - Nginx Mailing List - English
On Aug 19, 2012, at 5:48 PM, Francis Daly <francis@daoine.org> wrote: > Why not? > > Which specific aspect of the nginx implementation of http basic > authentication is unsuitable for your use case? > > Would http digest authentication avoid the problem you see? I would like to see digest auth supported personally. For proper spnego situations if the Kerberos/gssapi stufby mike - Nginx Mailing List - English
On Sat, Aug 18, 2012 at 4:46 PM, Francis Daly <francis@daoine.org> wrote: > In this location, only this one will apply. In another location, only > the server-level one will apply. I expected add_header to be an array item, which it might be, but I guess I forgot how nginx scope worked. I wish the scope would be a little looser (something that makes sense from someone who writes scrby mike - Nginx Mailing List - English
It actually seems like if I add_header in one scope somewhere it will ignore in another. For example I have one gratuitous add_header at the server {} level - with a different name. Then I add one on the location level. Then I have one come from the upstream. I could reproduce it reliably by adding an add_header somewhere and it would drop the other one out. I also have two environments with nby mike - Nginx Mailing List - English
This block basically works like a charm, passes the upstream headers from proxy_pass_header as expected, but the add_header doesn't seem to work no matter what. add_header is what I use upstream to add the headers like X-Hostname-Proxy. But I want to add a header local to this block. Ideas? I don't see anything in the wiki saying this is invalid. It says it is valid in location, server, etc blockby mike - Nginx Mailing List - English
not unless you hire someone to code it :) PHP 5.2.x went out of support a while ago, PHP 5.4.0 is now out even. 5.2.x is purely legacy mode, people can hack it up all they want, and if you do I'll post it on the site. But it will be almost an entire rewrite I would assume at this point to port especially the ondemand functionality. On Mon, Mar 19, 2012 at 9:38 AM, Alex Headley <aheadley@wayby mike - Php-fpm Mailing List - English
On Tue, Feb 14, 2012 at 11:45 PM, Sven Ludwig <nginx@abraumhal.de> wrote: > Hi, > > i only want to announce, that i patched the spnego module, so you can use it as > a 100% replacement to apache2+mod_auth_kerb. > > https://github.com/muhgatus/spnego-http-auth-nginx-module > > I installed in on 3 hosts running now for about 2 weeks without an error. > Perhaps someboby mike - Nginx Mailing List - English
I suggest using "qt-faststart" which is a simple command line tool which does this. On Jan 29, 2012, at 11:31 PM, Maxim Dounin <mdounin@mdounin.ru> wrote: > Hello! > > On Mon, Jan 30, 2012 at 04:09:33AM +0100, Ondrej Jombik wrote: > >> It is great that MP4 module came out. So we decided to migrate our video >> streaming servers to nginx. In fact those arby mike - Nginx Mailing List - English
No I don't believe they were ever "official" - I don't believe there are official ones. On Tue, Nov 8, 2011 at 10:07 PM, Sharl.Jimh.Tsin <amoiz.shine@gmail.com> wrote: > is this t-shirt sold by NGINX official? _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginxby mike - Nginx Mailing List - English
anyone still know of any T-shirt options? On Mon, Jun 13, 2011 at 12:54 PM, Cliff Wells <cliff@develix.com> wrote: > For anyone interested, the guy who printed the Nginx t-shirts a couple > of years ago finally put the remainder up on eBay: > > http://cgi.ebay.com/NGINX-t-shirt-/170654481676?pt=US_Mens_Tshirts&var=&hash=item6d700b391a#ht_500wt_1156 > > He went outby mike - Nginx Mailing List - English
2011/10/12 Maxim Dounin <mdounin@mdounin.ru>: >> if you are using php-fpm over fastcgi i would guess its due to fpm's >> request_terminate_timeout because the upload took too long > > Very unlikely, as everything happens within 1 second. > > 2011/10/11 17:55:34 2505#0: *1 http request line: "POST ... > ... > 2011/10/11 17:55:34 2505#0: *1 recv() failed (by mike - Nginx Mailing List - English
Trying to upload a small .png to Drupal. PHP 5.3.8, CentOS 5.6 x64, nginx 1.1.3 Everything else seems to work fine, but can't seem to get any deeper information as to why anything is getting messed up. Not sure if the debug log has any hints or not. (note I also tried nginx 1.0.8) - does this debug log help with anything? or is this "probably PHP"? http://pastebin.com/E1kDBegW Thanksby mike - Nginx Mailing List - English
http://nginx.net/nginx-venture-funding.html Great job, Igor. NGINX is hitting prime time. From Michael Dell's investment firm, no less! _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginxby mike - Nginx Mailing List - English
Happy birthday Igor :) nice find Antoine! On Sep 28, 2011, at 4:35 AM, Igor Sysoev <igor@sysoev.ru> wrote: > On Wed, Sep 28, 2011 at 12:20:21PM +0200, Antoine Bonavita wrote: >> Given the amount of times Sep 28th 1970 is mentioned in the nginx code >> (see below), I am putting a rough guess that this is your birthday. >> So, in this very special day, I wanted to thankby mike - Nginx Mailing List - English
Igor proposed this a while ago: on the global level (in http{} block) map $scheme $php_https { https on; http off; } then in fastcgi_params fastcgi_param HTTPS $php_https; On Sat, Sep 24, 2011 at 12:12 AM, Luke Scott <luke@visionlaunchers.com> wrote: > It would be great if there was an $https variable that was "on" or "off" (or "") so you could do somethby mike - Nginx Mailing List - English
Alias does not change document root so that variable is going to be whatever the document root is. Not what the alias is On Aug 28, 2011, at 12:57 PM, Dick Middleton <dick@fouter.net> wrote: > Hi, > > I having trouble getting alias directive to work as I would expect. One > thing I find is that the location part of the request is not being dropped in > the $fastcgi_scriby mike - Nginx Mailing List - English
On Mon, Jul 18, 2011 at 7:14 AM, Igor Sysoev <igor@sysoev.ru> wrote: > Our primary goals are improving support and communication for our users, > streamlining the development process, revamping the documentation, > integrating and speeding up pending bugfixes and patches, introducing > long-requested functionality and more. A big +1! Hopefully under this company on your own yoby mike - Nginx Mailing List - English
For the 5.3+ improvements only :) If you submit for 5.2 it will be ignored/closed and will just waste time. :) On Apr 16, 2011, at 7:27 AM, Jérôme Loyet <ml@fatbsd.com> wrote: > 2011/4/14 Imre Rad <psychrist666@gmail.com>: >> have you got any plans to backport the apache like process spawner for >> the 5.2 branch? >> please also add a feature to the status paby mike - Php-fpm Mailing List - English
it would be nice to support this. it's basically dynamic/reproxy capabilities, which is what is in perlbal, which is needed for mogilefs support. I thought nginx had something like this internally, or perhaps Valery figured out a neat way in his mogilefs module. On Thu, Apr 14, 2011 at 4:35 PM, dbanks <nginx-forum@nginx.us> wrote: > Sending a 302 directly works great. Thanks! > >by mike - Nginx Mailing List - English