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
Copy file name to clipboardExpand all lines: blog/2023-02-14-selenium-integration/index.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ services:
76
76
- BASE_URL=http://${WM_BASE_URL}
77
77
- RUST_LOG=info
78
78
- NUM_WORKERS=10 # <- an increased number of workers is helpful when running a lot of scraping scripts in parallel
79
-
- TIMEOUT=99999999# <- add this; This is important: Scraping websites usually outlasts normal scripts. To prevent a timeout we should increase this value.
79
+
- TIMEOUT=99999# <- add this; This is important: Scraping websites usually outlasts normal scripts. To prevent a timeout we should increase this value.
80
80
- DISABLE_SERVER=false
81
81
- METRICS_ADDR=false
82
82
depends_on:
@@ -237,7 +237,7 @@ services:
237
237
- BASE_URL=${WM_BASE_URL}
238
238
- RUST_LOG=info
239
239
- NUM_WORKERS=10 # <- an increased number of workers is helpful when running a lot of scraping scripts in parallel
240
-
- TIMEOUT=99999999 # <- add this; This is important: Scraping websites usually outlasts normal scripts. To prevent a timeout we should increase this value.
240
+
- TIMEOUT=99999 # <- 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
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,12 +41,13 @@ address:
41
41
# .env
42
42
DB_PASSWORD=supersecret
43
43
WM_BASE_URL=http://windmill.example.com
44
+
CADDY_REVERSE_PROXY=":80"
44
45
```
45
46
46
-
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:
47
+
Setting the `WM_BASE_URL` configures Windmill to use it as its base url. The reverse proxy is configured at `CADDY_REVERSE_PROXY`. You can use any reverse proxy as long as they behave mostly like the following caddy configuration:
0 commit comments