"nginx does not suck at ssl"
After reading "nginx does not suck at ssl":http://matt.io/entry/urI'm using:ssl_ciphers ALL:!aNULL:!ADH:!eNULL:!MEDIUM:!LOW:!EXP:!kEDH:RC4+RSA:+HIGH;Is this a good choice?-...
View ArticleRe: Location regex + if + basic auth to restrict directory access
I'll answer to my own question there:Apparently, yes, evaluating something with the 'if' directive doesn'tpropagate the environment containing the variables from the 'location'directive.All explained...
View ArticleDeny rules not working - raw php files being served!
Hi all,I'm using a pretty simple WordPress nginx config that is documented on the WordPress codex.http://codex.wordpress.org/NginxAll works fine except for 1 critical aspect.The config uses a...
View ArticleLocation with multiple paths
Hello everybody,I'm trying to limit access to some scripts on my site and created these instructions that work:server {...location ^~ /info.php {allow x.x.x.x;deny all;}location ^~ /apc.php {allow...
View ArticleRe: "nginx does not suck at ssl"
one quote from that post i can confirm:> nobody has any idea how SSL performance worksesp. when it comes to CIPER1 vs CIPHER, comparedoin terms of speed and security.what i can suggest to test if...
View ArticleRe: Headers set in http {} go missing after setting headers in location {}
On Sat, Mar 09, 2013 at 11:02:09PM -0500, nano wrote:Hi there,> How can I have global headers sent to the client, and send additional> headers when the client reaches a location block?The short...
View ArticleRe: HTTPS header missing from single server
On Sat, Mar 09, 2013 at 09:51:02PM -0800, Grant wrote:Hi there,> How can I make nginx set the HTTPS header in a single http/https> server?What is "the HTTPS header"?> piwik with force_ssl=1 on...
View ArticleRe: Location regex + if + basic auth to restrict directory access
On Sun, Mar 10, 2013 at 05:29:18AM -0400, B.R. wrote:Hi there,> The *correct* way:> location ^~ /documents/(\w+) {> set $user $1;> if ($user != $remote_user) {> return 503;> }>...
View ArticleRe: SSL default changes?
Hello!On Sun, Mar 10, 2013 at 09:48:47PM -0700, Grant wrote:> It looks like these changes from default are required for SSL session> resumption and to mitigate the BEAST SSL...
View ArticleRe: auth_request: is it possible to return auth_request result directly to...
Hello!On Mon, Mar 11, 2013 at 10:20:10AM +0100, Jan Wrobel wrote:> Hi,>> Currently I have auth_request module configured to return static pages> on 401 and 403 errors. This looks like...
View ArticleRe: could not build the proxy_headers_hash
Hello!On Mon, Mar 11, 2013 at 02:08:38PM +0400, Ruslan Ermilov wrote:> On Mon, Mar 11, 2013 at 05:24:38AM -0400, recived wrote:> > Здравствуйте. Не могу понять как решить проблему с...
View ArticleRe: error unlink() nginx 1.2.6
Hello!On Mon, Mar 11, 2013 at 09:58:28AM +0200, Kiril Kalchev wrote:> After I read the thread, I am wondering what is the recommended way to purge nginx cache?Recommended way is to assume you can't...
View Article[nginx] svn commit: r5108 - trunk/src/http/modules
Author: vbartDate: 2013-03-11 11:19:58 +0000 (Mon, 11 Mar 2013)New Revision: 5108URL: http://trac.nginx.org/nginx/changeset/5108/nginxLog:Gzip: fixed setting of NGX_HTTP_GZIP_BUFFERED.In r2411 setting...
View ArticleRe: IMAP: auth_http
Hello!On Sun, Mar 10, 2013 at 02:43:11PM -0700, Grant wrote:> >> nginx seems to require being pointed to an HTTP server for imap> >> authentication. Here's the protocol spec:>...
View ArticleRe: error unlink() nginx 1.2.6
Thank you very much, and sorry for the repeated question. I will dig deeper before asking next time.Regards,KirilOn Mar 11, 2013, at 1:17 PM, Maxim Dounin wrote:> Hello!>> On Mon, Mar 11, 2013...
View ArticleHow to set the start page
GreetingsI have successsfully installed nginx. I wish to set the start page of my static website, but the start page is not in the root, but in a subfolder called /enI tried changing the directive in...
View ArticleRe: Why Nginx Doesn't Implement FastCGI Multiplexing?
Hello!On Sat, Mar 09, 2013 at 10:43:47PM +0800, Ji Zhang wrote:> Hi,>> I'm doing some research on FastCGI recently. As I see from the FastCGI> specification, it does support multiplexing...
View ArticleRe: banging head against the wall with rewrite
something like this is what I am looking for.rewrite ^/backoffice/?(.*)$ /backoffice/dispatch.php?page=$1 last;try_files $uri $uri/ /backoffice/dispatch.php?$args;
View Article[nginx] svn commit: r5109 - trunk/src/http
Author: vbartDate: 2013-03-11 14:44:56 +0000 (Mon, 11 Mar 2013)New Revision: 5109URL: http://trac.nginx.org/nginx/changeset/5109/nginxLog:Removed unused prototype of ngx_http_find_server_conf().This...
View Article