Skip to content

Windows service that issues requests to URLs to keep sites warm.

Notifications You must be signed in to change notification settings

tdietrich513/site-warmer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

site-warmer

Windows service that issues requests to URLs to keep sites warm.

To configure the service, edit the App.Config. You can add as many Jobs as you require in the jobs collection of the jobSection.

Each job looks like this.

<job name="NEW JOB" 
       url="URL FOR WEB REQUEST TO BE PERFORMED"
       schedule="CRON FORMATED SCHEDULE" />

A job to hit google every 15 minutes would look like this:

<job name="Google" 
       url="http://www.google.com"
       schedule="* 0/15 * * * ?" />

This uses the Quartz.Net cron format.

About

Windows service that issues requests to URLs to keep sites warm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages