https://github.com/nathanperier/echo-http
Simple HTTP server that responds with the content of the requests it receives
https://github.com/nathanperier/echo-http
debugging-tool http
Last synced: 10 months ago
JSON representation
Simple HTTP server that responds with the content of the requests it receives
- Host: GitHub
- URL: https://github.com/nathanperier/echo-http
- Owner: NathanPERIER
- Created: 2024-02-22T21:40:20.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-06-09T09:43:07.000Z (10 months ago)
- Last Synced: 2025-06-25T05:03:36.889Z (10 months ago)
- Topics: debugging-tool, http
- Language: TypeScript
- Homepage:
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Echo HTTP
A small HTTP server that responds with the content of the requests it recieves. Can namely be used to test deployment of services behind a reverse-proxy.
## Run with Docker
### Build
```
docker build . -t echo-http
```
### Deploy
Example with `docker-compose` :
```yml
version: "3.9"
networks:
nginx:
name: nginx_network
external: true
services:
echo:
image: echo-http:latest
container_name: echo
ports:
- '8080:8080' # direct access
networks:
- nginx # access through reverse proxy
user: '1000:1000'
```