https://github.com/andreaskoch/http-410-gone-responder
A web-server responding with HTTP status code 410 for all requests
https://github.com/andreaskoch/http-410-gone-responder
Last synced: 4 months ago
JSON representation
A web-server responding with HTTP status code 410 for all requests
- Host: GitHub
- URL: https://github.com/andreaskoch/http-410-gone-responder
- Owner: andreaskoch
- Created: 2021-07-31T18:06:20.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T20:36:18.000Z (almost 5 years ago)
- Last Synced: 2026-01-26T13:45:11.342Z (5 months ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# andreaskoch/http-410-gone-responder
A web-server responding with HTTP status code 410 for all requests
## Build
```bash
docker build -t andreaskoch/http-410-gone-responder .
```
## Run
```bash
docker run -p 8080:80 docker.io/andreaskoch/http-410-gone-responder
```
Test: http://localhost:8080
With docker-compose:
```bash
make build
docker-compose -f docker-compose.yml up -d
```