From 001c60849bb586e4c0acd6ead5e761d0e3965046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?agentzh=20=28=E7=AB=A0=E4=BA=A6=E6=98=A5=29?= Date: Wed, 9 Nov 2011 18:33:05 +0800 Subject: [PATCH] fixed add_header directive syntax error in README. --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 534c3cd..80c3737 100644 --- a/README +++ b/README @@ -24,7 +24,7 @@ Synopsis set_encrypt_session $session $raw; set_encode_base32 $session; # from the ngx_set_misc module - add_header 'Set-Cookie: my_login=$session'; # from the ngx_headers module + add_header Set-Cookie 'my_login=$session'; # from the ngx_headers module # your content handler goes here... }