Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 2.69 KB

tips-and-tricks.md

File metadata and controls

40 lines (26 loc) · 2.69 KB

Tips and Tricks

⌨️ Key bindings and shortcuts

  • Pagination: Arrow keys and (works on every page and modals with pagination);
  • Activate Search: ctrl+f (+f on MacOS);
  • Start Searching: return () key;
  • Cancel Search: esc key.

🤖 Pre-rendering Tips

  • Pass /sitemap.xml to Pre-Render (Pre-render a website) in Pre-rendering Panel to instantly render whole website;
  • Use alternative rendering endpoint to reach best performance results.

Running pre-rendering integration tests:

  • Use cURL and Authorization header (see nginx integration): curl -v -H "Authorization: Basic TOKEN" https://render.ostr.io/?url=https://your-website-domain.com;
  • Use cURL and authentication credentials (see node.js integration): curl -v https://auth:string@render.ostr.io/?url=https://your-website-domain.com;
  • Use test:test credentials to test general integration (to make sure web application server can reach pre-rendering service);
  • Use Authorization: Basic dGVzdDp0ZXN0 header to test general integration (to make sure web application server can reach pre-rendering service);
  • Learn more about running tests in spiderable-middleware package documentation.

📈 Web Analytics Tips

  • Enable "Development Mode" to test web analytics integration and data-reports right from localhost.

🔭 Monitoring Tips

  • Use {{rand}} placeholder (including curly brackets) in endpoint URL to generate unique random URI for every checking request. Note: {{rand}} can be used multiple times in a single URL, example: /path/{{rand}}/part?nc={{rand}}.

⏰ Web-CRON Tips

  • Use {{rand}} placeholder (including curly brackets) in endpoint URL to generate unique random URI for every CRON request. Note: {{rand}} can be used multiple times in a single URL, example: /path/{{rand}}/part?nc={{rand}}.

🤑 Free credits