Skip to content
Snippets Groups Projects
Commit e2786238 authored by Karel Slaný's avatar Karel Slaný Committed by Ondřej Surý
Browse files

Removed round brackets from documentation as suggested in merge request.

parent 7ef0c0c2
Branches
Tags
No related merge requests found
......@@ -18,20 +18,20 @@ Example Configuration
-- Configure the client part of the resolver. Set 8 bytes of the client
-- secret and choose the hashing algorithm to be used.
-- Use a string composed of hexadecimal digits to set the secret.
cookies.config( { client_secret = '0123456789ABCDEF',
client_cookie_alg = 'FNV-64' } )
cookies.config { client_secret = '0123456789ABCDEF',
client_cookie_alg = 'FNV-64' }
-- Configure the server part of the resolver.
cookies.config( { server_secret = 'FEDCBA9876543210',
server_cookie_alg = 'FNV-64' } )
cookies.config { server_secret = 'FEDCBA9876543210',
server_cookie_alg = 'FNV-64' }
-- Enable client cookie functionality. (Add cookies into outbound
-- queries.)
cookies.config( { client_enabled = true } )
cookies.config { client_enabled = true }
-- Enable server cookie functionliaty. (Handle cookies in inbound
-- requests.)
cookies.config( { server_enabled = true } )
cookies.config { server_enabled = true }
.. tip:: If you want to change several parameters regarding the client or server configuration then do it within a single ``cookies.config()`` invocation.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment