Hi.
I'm trying to get nginx 1.6.2 to authenticate users using their client
certificates.
I'm using this configuration (besides usual SSL settings, which are proved
to work):
ssl_stapling on;
ssl_client_certificate /etc/nginx/certs/trusted.pem;
ssl_verify_client optional_no_ca;
trusted.pem conta
On Tue, Apr 28, 2015 at 9:17 PM, gariac wrote:
> I have an existing website at a hosting service. I have contracted with a
> virtual server company and have installed iredmail, which in turn installs
> nginx, [Oddly, Appache2 as well, though probably not relevant.]
>
> Since I have an ip address f
I have an existing website at a hosting service. I have contracted with a
virtual server company and have installed iredmail, which in turn installs
nginx, [Oddly, Appache2 as well, though probably not relevant.]
Since I have an ip address for the server, I am able to test the email
service. [Onl
It needs to be at the -same- level as the http {} block, not -within- the
http {} block.
worker_processes 4;
events {
worker_connections 8192;
}
http {
include mime.types;
default_type application/octet-stream;
}
stream {
upstream stream_backend {
server 192.168
Minimal conf;
worker_processes 4;
events {
worker_connections 8192;
}
http {
include mime.types;
default_type application/octet-stream;
stream {
upstream stream_backend {
server 192.168.222.22:810 weight=5;
server 192.168.222.17:810 weigh
On 29.04.2015 00:13, itpp2012 wrote:
Hmm, following: http://nginx.com/resources/admin-guide/tcp-load-balancing/
I get a nginx: [emerg] "stream" directive is not allowed here
eventhough its within the http context
You need to define it in the main context.
See http://nginx.org/r/stream for deta
On 4/29/15 12:13 AM, itpp2012 wrote:
> Hmm, following: http://nginx.com/resources/admin-guide/tcp-load-balancing/
> I get a nginx: [emerg] "stream" directive is not allowed here
> eventhough its within the http context like upstreams are, anyone with a
> good example? or did I stumble on a context
I was excited to see proxy_ssl_certificate and friends land in Nginx 1.7.8,
and decided to revisit Nginx as a candidate for proxy caching an upstream
server requiring client authentication. I've included the debugging
configuration I've been playing around with at the end of this post.
This partic
Hmm, following: http://nginx.com/resources/admin-guide/tcp-load-balancing/
I get a nginx: [emerg] "stream" directive is not allowed here
eventhough its within the http context like upstreams are, anyone with a
good example? or did I stumble on a context eval bug?
Posted at Nginx Forum:
http://for
Behind my web server is an application that doesn't include content-length
headers because it doesn't know what it is. I'm pretty sure this is an
application issue but I promised I'd come here and ask the question - is
there a way to have nginx buffer an entire server response and insert a
content-
Hello!
On Wed, Apr 29, 2015 at 01:13:37AM +1000, jb wrote:
> See, or please try:
> http://jsfiddle.net/qe44nbwh/
>
> If you see what I see in my IE11, when I press Start Test, and the target
> is nginx.org, the duration for each request goes slow/normal/slow/normal
>
> But when I change nginx.o
Changes with nginx 1.9.0 28 Apr 2015
*) Change: obsolete aio and rtsig event methods have been removed.
*) Feature: the "zone" directive inside the "upstream" block.
*) Feature: the stream module.
*) Feature: byte ranges support in the ngx
See, or please try:
http://jsfiddle.net/qe44nbwh/
If you see what I see in my IE11, when I press Start Test, and the target
is nginx.org, the duration for each request goes slow/normal/slow/normal
But when I change nginx.org to google.com, the timing is
normal/normal/normal ...
This only happens
okay - I noticed my homepage wouldn't load for www.velomap.org/de/ anymore
with this rule -
location = /de/ {
if ( $arg_s2member_paypal_notify ) {
rewrite ^ / permanent;
}
try_files $uri $uri/ /index.php;
}
Seems to work - well I hope this is passing on all infor
Will this work correctly with all the arguments followed?
location = /de/ {
if ( $arg_s2member_paypal_notify ) {
rewrite ^ / permanent;
}
}
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,258420,2584
Hi - I've got a plugin which was misconfigured - and now I need to rewrite a
string - however I cannot find out at all how to do this for urls with ? in
them.
So I need to have:
www.velomap.org/de/?s2member_paypal_notify=1
rewritten to www.velomap.org/?s2member_paypal_notify=1
(note the /de missin
16 matches
Mail list logo