We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ec415 commit df822c2Copy full SHA for df822c2
.github/workflows/deploy-nginx.yml
@@ -18,7 +18,7 @@ jobs:
18
run: |
19
gh workflow run deploy-nginx.yml \
20
--repo apify/apify-docs-private \
21
- --field deployment=crawlee-docs
+ --field deployment=crawlee-web
22
echo "✅ Deployment workflow triggered successfully"
23
env:
24
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
website/nginx.conf
@@ -3,6 +3,14 @@
3
server {
4
listen 0.0.0.0:8080;
5
server_name 'crawlee.dev';
6
+
7
+ # Health check endpoint
8
+ location /health {
9
+ access_log off;
10
+ return 200 '{"status":"UP"}';
11
+ add_header Content-Type application/json;
12
+ }
13
14
location / {
15
proxy_pass https://apify.github.io/crawlee/;
16
}
0 commit comments