---
title: "Web"
description: "Configure the host and port for local network connections using web.conf."
stack: "Community Stack (open source) — version 0.21.0"
stack_version: "0.21.0"
stack_comparison: https://docs.walt.id/community-vs-enterprise.md
canonical_url: https://docs.walt.id/community-stack/verifier2/configurations/config-files/web
generated: 2026-07-20
---
# Web

With `web.conf` you can configure the host and port the Verifier2 API binds to for local network connections.

### `webHost`

_String — default: `"0.0.0.0"`_

The network interface the service binds to. `0.0.0.0` listens on all available interfaces.

### `webPort`

_String — default: `"7003"`_

The port the service listens on.

**Note:**

When running via Docker Compose alongside Verifier (v1), Verifier2 is mapped to port `7004` on the host to avoid
conflicts — but the service itself still binds to `7003` internally. When running Verifier2 standalone, the
default port `7003` applies end-to-end.

## Example

```editorconfig[web.conf]
webHost = "0.0.0.0"
webPort = "7003"
```
