<!-- review: finished -->

<a id="quickaccess"></a>

# Acesso Rápido a Diretivas e Variáveis do Angie

Você pode acessar rapidamente a documentação de todas as diretivas e variáveis do Angie
sem pesquisar no site através do nosso serviço de links curtos em [https://angie.ws/en/](https://angie.ws/en/).
Ele permite atalhos para diretivas, variáveis e tópicos frequentemente usados.

<a id="http-and-core-directives"></a>

## Diretivas HTTP e Core

Diretivas sob [configurações core](https://pt.angie.software//angie/docs/configuration/modules/core.md#core) e [módulos HTTP](https://pt.angie.software//angie/docs/configuration/modules/index.md#modules-http)
usam o prefixo `/h/` (abreviação de `http`).

Exemplos:

- [listen](https://pt.angie.software//angie/docs/configuration/modules/http/index.md#listen): [https://angie.ws/en/h/listen](https://angie.ws/en/h/listen)
- [server](https://pt.angie.software//angie/docs/configuration/modules/http/index.md#server): [https://angie.ws/en/h/server](https://angie.ws/en/h/server)
- [worker_connections](https://pt.angie.software//angie/docs/configuration/modules/core.md#worker-connections): [https://angie.ws/en/h/worker_connections](https://angie.ws/en/h/worker_connections)

E assim por diante.

#### NOTE
A diretiva [server](https://pt.angie.software//angie/docs/configuration/modules/http/index.md#server) do módulo [Upstream](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#http-upstream)
está disponível em: [https://angie.ws/en/hu/server](https://angie.ws/en/hu/server).

<a id="upstream-directives-1"></a>

### Diretivas Upstream

Diretivas no módulo [Upstream](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#http-upstream)
usam o prefixo `/hu/` (abreviação de `http upstream`). Exemplos:

- [keepalive_requests](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#u-keepalive-requests): [https://angie.ws/en/hu/keepalive_requests](https://angie.ws/en/hu/keepalive_requests)
- [keepalive_time](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#u-keepalive-time): [https://angie.ws/en/hu/keepalive_time](https://angie.ws/en/hu/keepalive_time)
- [keepalive_timeout](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#u-keepalive-timeout): [https://angie.ws/en/hu/keepalive_timeout](https://angie.ws/en/hu/keepalive_timeout)

E assim por diante.

<a id="stream-module-directives"></a>

## Diretivas do Módulo Stream

Diretivas em [módulos stream](https://pt.angie.software//angie/docs/configuration/modules/index.md#modules-stream) usam o prefixo `/s/`
(abreviação de `stream`):

- [listen](https://pt.angie.software//angie/docs/configuration/modules/stream/index.md#s-listen): [https://angie.ws/en/s/listen](https://angie.ws/en/s/listen)
- [map](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_map.md#s-map): [https://angie.ws/en/s/map](https://angie.ws/en/s/map)
- [server](https://pt.angie.software//angie/docs/configuration/modules/stream/index.md#s-server): [https://angie.ws/en/s/server](https://angie.ws/en/s/server)

E assim por diante.

#### NOTE
A diretiva [server](https://pt.angie.software//angie/docs/configuration/modules/stream/index.md#s-server) do módulo [Upstream](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#stream-upstream)
está disponível em: [https://angie.ws/en/su/server](https://angie.ws/en/su/server).

<a id="upstream-directives"></a>

### Diretivas Upstream

Diretivas no módulo [Upstream](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#stream-upstream)
usam o prefixo `/su/` (abreviação de `stream upstream`):

- [upstream](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#s-u-upstream): [https://angie.ws/en/su/upstream](https://angie.ws/en/su/upstream)
- [server](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#s-u-server): [https://angie.ws/en/su/server](https://angie.ws/en/su/server)
- [state (PRO)](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#s-u-state): [https://angie.ws/en/su/state](https://angie.ws/en/su/state)

E assim por diante.

<a id="variables-1"></a>

## Variáveis

Variáveis usam o mesmo esquema de prefixos.

Variáveis HTTP (prefixo `/h/`):

- [$angie_version](https://pt.angie.software//angie/docs/configuration/modules/http/index.md#v-angie-version): [https://angie.ws/en/h/$angie_version](https://angie.ws/en/h/$angie_version)
- [$upstream_status](https://pt.angie.software//angie/docs/configuration/modules/http/http_upstream.md#v-upstream-status): [https://angie.ws/en/h/$upstream_status](https://angie.ws/en/h/$upstream_status)

Variáveis Stream (prefixo `/s/`):

- [$angie_version](https://pt.angie.software//angie/docs/configuration/modules/stream/index.md#v-s-angie-version): [https://angie.ws/en/s/$angie_version](https://angie.ws/en/s/$angie_version)
- [$upstream_session_time](https://pt.angie.software//angie/docs/configuration/modules/stream/stream_upstream.md#v-s-upstream-session-time): [https://angie.ws/en/s/$upstream_session_time](https://angie.ws/en/s/$upstream_session_time)

Para variáveis placeholder
como `$http_<HEADER>` ou `$cookie_<NAME>`,
use o prefixo até o underscore: [https://angie.ws/en/h/$http](https://angie.ws/en/h/$http).

<a id="additional-topics"></a>

## Tópicos Adicionais

Links curtos também estão disponíveis para outros tópicos:

- [Certificate Chaining](https://angie.ws/en/certificate_chaining)
- [Combined Locations](https://angie.ws/en/combined_locations)
- [Compact Server](https://angie.ws/en/compact_server)
- [Configuration](https://angie.ws/en/configure)
- [Configuration File Reloading](https://angie.ws/en/configfile_reloading)
- [Configuration Hashes](https://angie.ws/en/configure_hashes)
- [Control Configuration Changes](https://angie.ws/en/control_config_change)
- [Control Signals](https://angie.ws/en/control_signals)
- [Cyclic Memory Buffer](https://angie.ws/en/cyclic_memory_buffer)
- [Debug Logging](https://angie.ws/en/debug_logging)
- [Dummy Server](https://angie.ws/en/dummy_server)
- [HTTPS Configuration](https://angie.ws/en/https_configuration)
- [HTTPS Optimization](https://angie.ws/en/https_optimization)
- [HTTPS with Separate IPs](https://angie.ws/en/https_separate_ips)
- [HTTP Sessions](https://angie.ws/en/http_sessions)
- [Inheritance](https://angie.ws/en/inheritance)
- [Load Balancing](https://angie.ws/en/load_balancing)
- [Location Redirect](https://angie.ws/en/location_redirect)
- [Log Rotation](https://angie.ws/en/log_rotation)
- [Method Usage](https://angie.ws/en/methods_use)
- [Named Locations](https://angie.ws/en/named_location)
- [Paths](https://angie.ws/en/paths)
- [Picking a Location](https://angie.ws/en/pick_location)
- [Proxy Pass URI](https://angie.ws/en/proxy_pass_uri)
- [Proxying](https://angie.ws/en/proxying)
- [Request Processing](https://angie.ws/en/request_processing)
- [Runtime CLI Options](https://angie.ws/en/runtime_cli_options)
- [Service Upgrade](https://angie.ws/en/service_upgrade)
- [SNI (Server Name Indication)](https://angie.ws/en/sni)
- [Source Build Features](https://angie.ws/en/sourcebuild_features)
- [SSL Error Codes](https://angie.ws/en/ssl_error_codes)
- [Stream Sessions](https://angie.ws/en/stream_sessions)
- [Syntax](https://angie.ws/en/syntax)
- [Syslog Logging](https://angie.ws/en/syslog_logging)
- [Virtual Server Selection](https://angie.ws/en/virtual_server_selection)
- [WebSocket Proxying](https://angie.ws/en/websocket_proxy)
