Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Small image used as a blackhole for every service that should return only a 200 status code for any request made. This is based on the official nginx.

Notifications You must be signed in to change notification settings

treatwell/uala-nginx-blackhole

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Nginx Blackhole

Small image used as a blackhole for every service that should return only a 200 status code for any request made. This is based on the official nginx.

Example:

# Run on port 888
docker run -p 888:80 leen15/blackhole

# Test it
~ curl -LI http://localhost:888 -o /dev/null -w '%{http_code}\n' -s
200
~ curl -LI http://localhost:888/test -o /dev/null -w '%{http_code}\n' -s
200
~ curl -LI http://localhost:888/random-text -o /dev/null -w '%{http_code}\n' -s
200

About

Small image used as a blackhole for every service that should return only a 200 status code for any request made. This is based on the official nginx.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 70.3%
  • HTML 29.7%