You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- NUM_WORKERS=10 # <- an increased number of workers is helpful when running a lot of scraping scripts in parallel
232
233
- TIMEOUT=99999999 # <- add this; This is important: Scraping websites usually outlasts normal scripts. To prevent a timeout we should increase this value.
Copy file name to clipboardExpand all lines: docs/advanced/1_self_host/index.md
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -52,11 +52,19 @@ address:
52
52
```bash
53
53
# .env
54
54
DB_PASSWORD=supersecret
55
-
WM_BASE_URL=windmill.example.com
55
+
WM_BASE_URL=http://windmill.example.com
56
+
CADDY_REVERSE_PROXY=http://windmill.example.com
56
57
```
57
58
58
-
Setting the `WM_BASE_URL` configures Windmill to use it as its base url, but
59
-
also configures Caddy to use it as the domain.
59
+
Setting the `WM_BASE_URL` configures Windmill to use it as its base url. The reverse proxy is also configured at the same domain. You can use any reverse proxy as long as they behave mostly like the following caddy configuration:
0 commit comments