all repos — wp-ffpc @ 0b3f7eb9aebba1f675d1c5a193333fc9284f9ee5

nginx-sample.conf (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
http {
	...
	server {
		...

		location / {
			try_files $uri $uri/ @memcached;
		}

		location @memcached {
			default_type text/html;

			set $memcached_key DATAPREFIX$host$request_uri;
			memcached_pass MEMCACHEDHOST:MEMCACHEDPORT;
			error_page 404 = @rewrites;
		}

		location @rewrites {
			rewrite ^(.*)$ /index.php?q=$1 last;
		}
		
		...
	}
}
...