Skip to content

Commit

Permalink
Regenerate REFERENCE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex committed Jul 5, 2023
1 parent 89496d2 commit d27b04c
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -629,47 +629,47 @@ Default value: `'on'`

##### <a name="-nginx--accept_mutex_delay"></a>`accept_mutex_delay`

Data type: `String`
Data type: `Nginx::Time`



Default value: `'500ms'`

##### <a name="-nginx--client_body_buffer_size"></a>`client_body_buffer_size`

Data type: `String`
Data type: `Nginx::Size`



Default value: `'128k'`

##### <a name="-nginx--client_max_body_size"></a>`client_max_body_size`

Data type: `String`
Data type: `Nginx::Size`



Default value: `'10m'`

##### <a name="-nginx--client_body_timeout"></a>`client_body_timeout`

Data type: `String`
Data type: `Nginx::Time`



Default value: `'60s'`

##### <a name="-nginx--send_timeout"></a>`send_timeout`

Data type: `String`
Data type: `Nginx::Time`



Default value: `'60s'`

##### <a name="-nginx--lingering_timeout"></a>`lingering_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand Down Expand Up @@ -709,7 +709,7 @@ Default value: `undef`

##### <a name="-nginx--fastcgi_cache_inactive"></a>`fastcgi_cache_inactive`

Data type: `String`
Data type: `Nginx::Time`



Expand Down Expand Up @@ -741,7 +741,7 @@ Default value: `'1'`

##### <a name="-nginx--fastcgi_cache_max_size"></a>`fastcgi_cache_max_size`

Data type: `String`
Data type: `Nginx::Size`



Expand Down Expand Up @@ -893,7 +893,7 @@ Default value: `'off'`

##### <a name="-nginx--keepalive_timeout"></a>`keepalive_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand Down Expand Up @@ -1005,15 +1005,15 @@ Default value: `'32 4k'`

##### <a name="-nginx--proxy_buffer_size"></a>`proxy_buffer_size`

Data type: `String`
Data type: `Nginx::Size`



Default value: `'8k'`

##### <a name="-nginx--proxy_cache_inactive"></a>`proxy_cache_inactive`

Data type: `String`
Data type: `Nginx::Time`



Expand All @@ -1037,7 +1037,7 @@ Default value: `'1'`

##### <a name="-nginx--proxy_cache_max_size"></a>`proxy_cache_max_size`

Data type: `String`
Data type: `Nginx::Size`



Expand Down Expand Up @@ -1085,7 +1085,7 @@ Default value: `undef`

##### <a name="-nginx--proxy_connect_timeout"></a>`proxy_connect_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand All @@ -1109,7 +1109,7 @@ Default value: `undef`

##### <a name="-nginx--proxy_read_timeout"></a>`proxy_read_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand All @@ -1125,7 +1125,7 @@ Default value: `undef`

##### <a name="-nginx--proxy_send_timeout"></a>`proxy_send_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand Down Expand Up @@ -1352,7 +1352,7 @@ Default value: `'shared:SSL:10m'`

##### <a name="-nginx--ssl_session_timeout"></a>`ssl_session_timeout`

Data type: `String`
Data type: `Nginx::Time`



Expand Down Expand Up @@ -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/]]`

### <a name="Nginx--Time"></a>`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+)$/]]`

### <a name="Nginx--UpstreamCustomParameters"></a>`Nginx::UpstreamCustomParameters`

Expand Down

0 comments on commit d27b04c

Please sign in to comment.