Skip to content

Commit c068969

Browse files
committed
fix: add back custom host default setting
1 parent 7268d45 commit c068969

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stac_api/runtime/src/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ class _ApiSettings(Settings):
9595
)
9696
swagger_ui_endpoint: str = "/docs"
9797
openapi_spec_endpoint: str = "/openapi.json"
98-
custom_host: Optional[str] = Field(None, description="Custom host URL")
98+
custom_host: Optional[str] = Field(
99+
"http://localhost:8081", description="Custom host URL"
100+
)
99101
git_sha: Optional[str] = None
100102

101103
@field_validator("cors_origins")

0 commit comments

Comments
 (0)