diff --git a/UPDATE.md b/UPDATE.md index 8d605dba4097..f8653d94f339 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -13,21 +13,24 @@ You will need to update your configuration file. Replace the `plugins_available` ```yaml plugins_available: - ssl - - key-auth - - basic-auth + - jwt + - acl + - cors - oauth2 - - rate-limiting - - response-ratelimiting - tcp-log - udp-log - file-log - http-log - - cors + - key-auth + - hmac-auth + - basic-auth + - ip-restriction + - mashape-analytics - request-transformer - response-transformer - request-size-limiting - - ip-restriction - - mashape-analytics + - rate-limiting + - response-ratelimiting ``` You can still remove plugins you don't use for a lighter Kong. diff --git a/kong.yml b/kong.yml index 7a43c4c48bab..4b9cbb1ad468 100644 --- a/kong.yml +++ b/kong.yml @@ -1,24 +1,24 @@ ## Available plugins on this server plugins_available: - ssl - - cors - jwt + - acl + - cors + - oauth2 - tcp-log - udp-log - file-log - http-log - - mashape-analytics - - oauth2 - key-auth + - hmac-auth - basic-auth - ip-restriction - - rate-limiting - - response-ratelimiting + - mashape-analytics - request-transformer - response-transformer - request-size-limiting - - acl - - hmac-auth + - rate-limiting + - response-ratelimiting ## The Kong working directory ## (Make sure you have read and write permissions) diff --git a/spec/unit/statics_spec.lua b/spec/unit/statics_spec.lua index a8fe44b699da..7a98443e5d2e 100644 --- a/spec/unit/statics_spec.lua +++ b/spec/unit/statics_spec.lua @@ -43,24 +43,24 @@ describe("Static files", function() ## Available plugins on this server plugins_available: - ssl - - cors - jwt + - acl + - cors + - oauth2 - tcp-log - udp-log - file-log - http-log - - mashape-analytics - - oauth2 - key-auth + - hmac-auth - basic-auth - ip-restriction - - rate-limiting - - response-ratelimiting + - mashape-analytics - request-transformer - response-transformer - request-size-limiting - - acl - - hmac-auth + - rate-limiting + - response-ratelimiting ## The Kong working directory ## (Make sure you have read and write permissions)