Skip to content

Instantly share code, notes, and snippets.

@sergejmueller
Last active June 3, 2018 12:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sergejmueller/6113816 to your computer and use it in GitHub Desktop.
Save sergejmueller/6113816 to your computer and use it in GitHub Desktop.
Erweiterung der Nginx-Konfigurationsdatei für Cachify Memcached-Caching
## GZIP
gzip_static on;
## CHARSET
charset utf-8;
## INDEX LOCATION
location / {
error_page 404 405 = @nocache;
if ( $query_string ) {
return 405;
}
if ( $request_method = POST ) {
return 405;
}
if ( $request_uri ~ "/wp-" ) {
return 405;
}
if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
return 405;
}
default_type text/html;
add_header X-Powered-By Cachify;
set $memcached_key $host$uri;
memcached_pass localhost:11211;
}
## NOCACHE LOCATION
location @nocache {
try_files $uri $uri/ /index.php?$args;
}
@ulrichblock
Copy link

Hi Sergej,

shouldn´t it be:

error_page 404 405 = @nocache;

With my permalink setup it won´t work with only 405.

Regards,
Ulrich

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment