Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 874 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 874 Bytes

badger

PyPI version

mDNS-based reverse proxy for naming services on a local network.


Sample config

Configuration should be placed in ~/.badger/config.toml, but this can be changed with --config <path>. The config can also be given as either JSON, YAML, YML, INI or XML.

[badger]
level="INFO" # Set default logging level to INFO.
enable_docker=false # Disable Docker support.

mappings = [
    "[email protected]:5000", # Map service1.local -> 10.0.0.3:5000.
    "[email protected]:80",  # Map service2.local -> 10.0.0.50:80.
    "[email protected]:5256"  # Map service3.local -> 10.0.0.4:5256.
]