19 lines
380 B
Markdown
19 lines
380 B
Markdown
# autodiscover-proxy
|
|
|
|
A simple proxy server used to expose domains associated with a given domain via Microsoft's AutoDiscover.svc.
|
|
|
|
## Usage
|
|
|
|
Running locally:
|
|
```bash
|
|
uv run fastapi dev main.py
|
|
```
|
|
|
|
Running in Docker:
|
|
```bash
|
|
docker run -p 8000:8000 -it git.wnd.sh/n/autodiscover-proxy
|
|
# or
|
|
docker build -t autodiscover-proxy .
|
|
docker run -p 8000:8000 -it autodiscover-proxy
|
|
```
|