---
title: "HTTP Server"
slug: "http-server"
updated: 2024-11-26T17:05:12Z
published: 2024-11-26T17:05:12Z
---

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

# HTTP Server

The **HTTP server** connector is used to accept HTTP connections, such as to merge the output of two chains into a single chain. When merging outputs, the URL parameter must match the URL from the HTTP output connector.

| **Param name** | **Mandatory** | **Description** |
| --- | --- | --- |
| URL | Yes | Output URL of the chain. |

**Example XML:**

```xml
<HttpServerInputConnector>
       <DeadAirTimeout>0</DeadAirTimeout>
       <Relays>
         <LogFileRelay>
           <FilesToKeep>30</FilesToKeep>
         </LogFileRelay>
       </Relays>
       <Url>http://localhost:777/stwcue/metadata/</Url>
</HttpServerInputConnector>
```
