From d27b04c5be2ed17d79edaf62dd70b2213b397f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Wed, 5 Jul 2023 10:31:08 -1000 Subject: [PATCH] Regenerate REFERENCE.md --- REFERENCE.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/REFERENCE.md b/REFERENCE.md index 5412b5cde..ff104ab7f 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -629,7 +629,7 @@ Default value: `'on'` ##### `accept_mutex_delay` -Data type: `String` +Data type: `Nginx::Time` @@ -637,7 +637,7 @@ Default value: `'500ms'` ##### `client_body_buffer_size` -Data type: `String` +Data type: `Nginx::Size` @@ -645,7 +645,7 @@ Default value: `'128k'` ##### `client_max_body_size` -Data type: `String` +Data type: `Nginx::Size` @@ -653,7 +653,7 @@ Default value: `'10m'` ##### `client_body_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -661,7 +661,7 @@ Default value: `'60s'` ##### `send_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -669,7 +669,7 @@ Default value: `'60s'` ##### `lingering_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -709,7 +709,7 @@ Default value: `undef` ##### `fastcgi_cache_inactive` -Data type: `String` +Data type: `Nginx::Time` @@ -741,7 +741,7 @@ Default value: `'1'` ##### `fastcgi_cache_max_size` -Data type: `String` +Data type: `Nginx::Size` @@ -893,7 +893,7 @@ Default value: `'off'` ##### `keepalive_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -1005,7 +1005,7 @@ Default value: `'32 4k'` ##### `proxy_buffer_size` -Data type: `String` +Data type: `Nginx::Size` @@ -1013,7 +1013,7 @@ Default value: `'8k'` ##### `proxy_cache_inactive` -Data type: `String` +Data type: `Nginx::Time` @@ -1037,7 +1037,7 @@ Default value: `'1'` ##### `proxy_cache_max_size` -Data type: `String` +Data type: `Nginx::Size` @@ -1085,7 +1085,7 @@ Default value: `undef` ##### `proxy_connect_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -1109,7 +1109,7 @@ Default value: `undef` ##### `proxy_read_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -1125,7 +1125,7 @@ Default value: `undef` ##### `proxy_send_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -1352,7 +1352,7 @@ Default value: `'shared:SSL:10m'` ##### `ssl_session_timeout` -Data type: `String` +Data type: `Nginx::Time` @@ -5171,13 +5171,13 @@ Variant[String[1], Struct[{ The Nginx::Size data type. -Alias of `Pattern[/^\d+[k|K|m|M]?$/]` +Alias of `Variant[Integer[0], Pattern[/\A\d+[k|K|m|M]?\z/]]` ### `Nginx::Time` The Nginx::Time data type. -Alias of `Pattern[/^\d+(ms|s|m|h|d|w|M|y)?$/]` +Alias of `Variant[Integer[0], Pattern[/^(?!$)((\d+y *)?(\d+M *)?(\d+w *)?(\d+d *)?(\d+h *)?(\d+m *)?(\d+s *)?(\d+ms)?|\d+)$/]]` ### `Nginx::UpstreamCustomParameters`