Skip to content

Commit ca4dd4b

Browse files
committed
Merge branch 'dev' into feat/forecasting-xgboost-model
2 parents 53d3d57 + 82c457e commit ca4dd4b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ def create_app() -> FastAPI:
116116
r"localhost|127\.0\.0\.1|"
117117
r"10\.\d+\.\d+\.\d+|"
118118
r"192\.168\.\d+\.\d+|"
119-
r"172\.(1[6-9]|2\d|3[0-1])\.\d+\.\d+"
119+
r"172\.(1[6-9]|2\d|3[0-1])\.\d+\.\d+|"
120+
# Tailscale CGNAT range (100.64.0.0/10) — dev-only remote access
121+
r"100\.(6[4-9]|[7-9]\d|1[01]\d|12[0-7])\.\d+\.\d+"
120122
r")(:\d+)?$"
121123
if settings.is_development
122124
else None

0 commit comments

Comments
 (0)