mod_http_oauth2/README.markdown
changeset 5621 d8622797e315
parent 5619 308b5b117379
child 5638 f3b7e05c74a9
equal deleted inserted replaced
5620:59d5fc50f602 5621:d8622797e315
    98 
    98 
    99 The following options configure the lifetime of tokens issued by the module.
    99 The following options configure the lifetime of tokens issued by the module.
   100 The defaults are recommended.
   100 The defaults are recommended.
   101 
   101 
   102 ```lua
   102 ```lua
   103 oauth2_access_token_ttl = 86400 -- 24 hours
   103 oauth2_access_token_ttl = 3600 -- one hour
   104 oauth2_refresh_token_ttl = nil -- unlimited unless revoked by the user
   104 oauth2_refresh_token_ttl = 604800 -- one week
   105 ```
   105 ```
   106 
   106 
   107 ### Dynamic client registration
   107 ### Dynamic client registration
   108 
   108 
   109 To allow users to connect any compatible software, you should enable dynamic
   109 To allow users to connect any compatible software, you should enable dynamic