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.
crawlee.dev/js
1 parent f0d02ad commit c715c73Copy full SHA for c715c73
nginx.conf
@@ -421,10 +421,16 @@ server {
421
location /python {
422
proxy_pass https://apify.github.io/crawlee-python/;
423
}
424
+
425
# So that we can have both GH pages and crawlee.dev/python working and loading assets from the same path
426
location /crawlee-python {
427
428
429
430
+ # Redirect rule for old JS docs to go under /js prefix
431
+ rewrite ^/docs(.*)$ /js/docs$1 permanent;
432
+ rewrite ^/api(.*)$ /js/api$1 permanent;
433
434
# Redirect rule for "upgrading-to-v03" to "upgrading-to-v0x"
435
rewrite ^/python/docs/upgrading/upgrading-to-v03$ /python/docs/upgrading/upgrading-to-v0x permanent;
436
0 commit comments