We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53d3d57 + 82c457e commit ca4dd4bCopy full SHA for ca4dd4b
1 file changed
app/main.py
@@ -116,7 +116,9 @@ def create_app() -> FastAPI:
116
r"localhost|127\.0\.0\.1|"
117
r"10\.\d+\.\d+\.\d+|"
118
r"192\.168\.\d+\.\d+|"
119
- r"172\.(1[6-9]|2\d|3[0-1])\.\d+\.\d+"
+ 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+"
122
r")(:\d+)?$"
123
if settings.is_development
124
else None
0 commit comments