> ## Documentation Index
> Fetch the complete documentation index at: https://infisical.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Web Access

> Access PAM-managed resources directly from your browser.

Infisical PAM Web Access provides a browser-based portal for interacting with your infrastructure directly from your browser via the Infisical dashboard — no client tools or CLI required.

<Info>
  Web Access currently supports **PostgreSQL** databases (with visual table browsing, inline editing, and a SQL query runner), **Redis** servers, **SSH** servers, and **Windows** servers via RDP.
</Info>

## How It Works

When you open a web access session, Infisical establishes a secure WebSocket connection that tunnels through an Infisical Gateway to your target resource. All commands are executed server-side and streamed back to your browser in real time.

```mermaid theme={"dark"}
sequenceDiagram
    participant Browser
    participant Infisical
    participant Gateway as Infisical Gateway
    participant Resource as Target Resource

    Browser->>Infisical: Request session ticket
    Infisical-->>Browser: One-time ticket
    Browser->>Infisical: Open WebSocket with ticket
    Infisical->>Gateway: Establish secure tunnel
    Gateway->>Resource: Connect with account credentials
    Browser->>Infisical: User input
    Infisical->>Gateway: Forward input
    Gateway->>Resource: Execute
    Resource-->>Browser: Streamed output
```

## Session Limits

| Setting                  | Value                            |
| ------------------------ | -------------------------------- |
| **Max session duration** | 1 hour                           |
| **Idle timeout**         | 10 minutes (resets on any input) |
| **Concurrent sessions**  | 5 per user per project           |

Sessions that exceed the idle timeout or max duration are automatically terminated.

## Supported Resources

<CardGroup cols={2}>
  <Card title="PostgreSQL" icon="database" href="/documentation/platform/pam/product-reference/web-access/postgresql">
    Visual table browsing and editing, plus an integrated SQL query runner.
  </Card>

  <Card title="Redis" icon="database" href="/documentation/platform/pam/product-reference/web-access/redis">
    Interactive Redis REPL with redis-cli-style output formatting.
  </Card>

  <Card title="SSH" icon="terminal" href="/documentation/platform/pam/product-reference/web-access/ssh">
    Full interactive shell session via browser-based terminal.
  </Card>

  <Card title="Windows RDP" icon="desktop" href="/documentation/platform/pam/product-reference/web-access/windows-rdp">
    Full graphical remote desktop session via browser-based RDP client.
  </Card>
</CardGroup>
