From bc9ca2bc6a48a03bd80efdc0293cbcd0887a431e Mon Sep 17 00:00:00 2001 From: Tommy George Date: Sun, 13 Dec 2015 22:01:17 -0600 Subject: [PATCH] Fix comment typo I believe this was meant to say "post requires a password", rather than "pass requires a password". It's not much, but I noticed it and thought I could at least submit the change. =) Been testing and using this on another site, and the debug headers were a great idea. --- rocket-nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocket-nginx.conf b/rocket-nginx.conf index 3502475..bdc7cd3 100644 --- a/rocket-nginx.conf +++ b/rocket-nginx.conf @@ -66,7 +66,7 @@ if (-f "$document_root/.maintenance") { # Do not bypass if one of those cookie if found # wordpress_logged_in_[hash] : When a user is logged in, this cookie is created (we'd rather let WP-Rocket handle that) -# wp-postpass_[hash] : When a protected pass requires a password, this cookie is created. +# wp-postpass_[hash] : When a protected post requires a password, this cookie is created. if ($http_cookie ~* "(wordpress_logged_in_|wp\-postpass_)") { set $rocket_bypass 0; set $rocket_reason "Cookie";