Skip to content

Commit

Permalink
Serve only on localhost by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Jul 4, 2024
1 parent fc5212b commit 93aae63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def main() -> None:
logger.addHandler(handler)
uvicorn.run(
"main:app",
host="0.0.0.0",
host="127.0.0.1",
port=settings.port,
workers=settings.workers,
log_config=None,
Expand Down

0 comments on commit 93aae63

Please sign in to comment.