Re: Gzip и ETag
On 08.05.2013, at 13:08, Илья Шипицин <chipitsine@gmail.com> wrote:> Если Expire уже правильный, то для динамического контента вы все равно> сгенерируете страницу (независимо от ETag-ов), а...
View Articlenginx-1.4 proxy requests being continious
A request for /img/file_doesnt_exist.jpg results in the backend server (192.168.129.90) getting continuous requests for the same file (which doesn't exist there either so 404 each time), while the...
View ArticleRe: Howto set geoip_country for IPv4 and IPv6 databases?
Hi,> Seems that the libgeoip1 in debian squeeze in version> 1.4.7~beta6+dfsg-1 doesn't support this. Will test this again when> wheezy is released at the next weekend.just want to let you know...
View ArticleRe: Location support for multiple URLs
On Sun, Apr 7, 2013 at 12:34 AM, Typlo <typlo@me.com> wrote:>> Hello,> I would like to use the FastCGI cache feature of nginx for my web application. But I need to use it only for a set...
View Articlehow to disable resume capability
Hello EveryoneI just moved in nginx and somehow I'm newbe...I am using my server as a download server. and i need to know how can i disable resume capability for my users in one virtualhost?I already...
View ArticleNew User Checking In
I've decided to build an Ubuntu Server running Wordpress and I've read that Nginx is the best of the best, so I've given it a go. I'm not having much luck but I plan on learning all that I can learn...
View ArticleRe: Gzip и ETag
Hello!On Thu, May 09, 2013 at 01:19:32AM +0400, Daniel Podolsky wrote:> > Префикс - неправильно, по результатам gzip'ования может> > получиться разный контент, в зависимости от настроек или...
View ArticleHow to read all client chain certificates from fastcgi request.
Hi,I configured my nginx with openssl as below:server {listen 443;server_name localhost;ssl on;ssl_certificate <Combined Server certificate and Root CA certificate>ssl_certificate_key <Server...
View ArticleDisable automatic urlencoding with proxy_pass
Hi,Any way to disable urlencode on nginx with proxy_pass? Following is my config and as suggested on google I already removed the "/" URI part ofof this "proxy_pass http://127.0.0.1:8090;"Any idea how...
View ArticleRe: resumable upload
On May 8, 2013, at 9:13 PM, Valery Kholodkov <valery+nginxru@grid.net.ru> wrote:> On 05/08/2013 07:03 PM, Maxim Dounin wrote:>> Hello!>>>> On Tue, May 07, 2013 at 09:37:38PM...
View ArticleRe: resumable upload
Hello!On Wed, May 08, 2013 at 10:13:05PM +0200, Valery Kholodkov wrote:> On 05/08/2013 07:03 PM, Maxim Dounin wrote:> >Hello!> >> >On Tue, May 07, 2013 at 09:37:38PM +0200, Valery...
View ArticleRe: Location support for multiple URLs
You can do that.At the http level set a map directive like:map $arg_act$arg_ID $no_cache {default 1;~*detail[[:alnum:]]+ 0; # assuming the ID is alphanumeric}Then add:fastcgi_cache_bypass...
View ArticlePHP-FPM documentation
Hello all, does anybody have a documentation which describes PHP-FPMsoftware architecture?I have some doubts concerning pools and master process interactions...-----You received this message because...
View ArticlePHP-FPM documentation
Hello all,douDoes anybody have a documentation which describes PHP-FPM softwarearchitecture?I have some doubts regarding pools and master process interactions.Regards.-----You received this message...
View ArticleRe: Websocket proxy
At the http level:map $http_upgrade $connection_upgrade {default upgrade;'' close;}map $connection_upgrade $proxy_upstream_port {upgrade 81;close 80;}Then at the location do:location /...
View ArticleRe: Proxying based on protocol (e.g. "ws"/"wss")?
.... bump?(thanks,Dan)At 9:32 AM -0400 5/8/13, Daniel Griscom wrote:>I'm an nginx newbie, and need use use it as a front end for a>website that also handles websocket connections. I have...
View ArticleRe: HTTP Basic Auth question
Hello,Sorry for the long delay. I have tried the following configuration which does not seem to work at all.proxy_hide_header Authorization;proxy_set_header Authorization "$remote_user";|I can still...
View ArticleRe: Proxying based on protocol (e.g. "ws"/"wss")?
The scheme is available as... $schemeOn Thu, 2013-05-09 at 14:45 -0400, Daniel Griscom wrote:> ... bump?>> (thanks,> Dan)>>> At 9:32 AM -0400 5/8/13, Daniel Griscom wrote:>...
View ArticleRe: Websocket proxy
Thanks for the recipe.Just tried and now I am not able to get regularHTTP working on port 80.Has anybody ever got nginx websocket proxy working?Thanks,- AlderOn Thu, May 9, 2013 at 11:19 AM, António P....
View ArticleRe: HTTP Basic Auth question
On Thu, May 09, 2013 at 12:55:22PM -0700, Russ Lavoy wrote:Hi there,> I have tried the following configuration which does not seem to work at all.>> proxy_hide_header Authorization;>>...
View Article