Skip to content

Commit 16f78ac

Browse files
committed
Change some links to use https
1 parent 92db7ea commit 16f78ac

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

_layouts/blog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<h1 class="page-header">
99
<span class="sub-header">
1010
<i class="fa fa-rss"></i>
11-
<a href="http://feeds.feedburner.com/hangfireio">rss feed</a>
11+
<a href="https://feeds.feedburner.com/hangfireio">rss feed</a>
1212
</span>
1313
{{ page.subtitle }}
1414
</h1>

_layouts/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<meta name="twitter:title" content="Hangfire – Background Jobs for .NET and .NET Core">
1717
<meta name="twitter:description" content="An easy way to perform fire-and-forget, delayed and recurring tasks in ASP.NET applications. No Windows Service required, backed by persistent storage.">
1818
<meta name="twitter:image:src" content="{{ site.url }}/img/twitter-crd.png">
19-
<meta property="og:url" content="http://hangfire.io" />
19+
<meta property="og:url" content="https://www.hangfire.io" />
2020

2121
<!--link href="{{ site.url }}{{ page.url }}" rel="canonical"-->
2222

@@ -32,7 +32,7 @@
3232
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
3333
<![endif]-->
3434

35-
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/hangfireio">
35+
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://feeds.feedburner.com/hangfireio">
3636

3737
<script>
3838
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){

overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Just look at the screenshots below, and you'll love it!
303303

304304
<hr>
305305
<div class="text-center">
306-
<a class="btn btn-primary btn-lg" href="http://docs.hangfire.io/en/latest/quick-start.html">Quick Start</a>
306+
<a class="btn btn-primary btn-lg" href="https://docs.hangfire.io/en/latest/quick-start.html">Quick Start</a>
307307
<span class="btn btn-lg">or</span>
308308
<a class="btn btn-default btn-lg" href="/pro/">Hangfire Pro</a>
309309
</div>

pro/downloads.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ sub_active: pro-downloads
77

88
<h1 class="page-header">Hangfire Pro Downloads</h1>
99

10-
Hangfire Pro packages are hosted on a [private ProGet Server](https://nuget.hangfire.io/feeds/hangfire-pro). Package downloads are available only for [Hangfire Pro subscribers](http://hangfire.io/pricing/). After paying, you'll instantly receive a link to download the Hangfire Pro binaries (non-NuGet based). Please give me 24 hours to generate your credentials for private NuGet server.
10+
Hangfire Pro packages are hosted on a [private ProGet Server](https://nuget.hangfire.io/feeds/hangfire-pro). Package downloads are available only for [Hangfire Pro subscribers](https://hangfire.io/pricing/). After paying, you'll instantly receive a link to download the Hangfire Pro binaries (non-NuGet based). Please give me 24 hours to generate your credentials for private NuGet server.
1111

1212
Avaliable Packages
1313
-------------------
1414

1515
* [Hangfire.Pro](https://nuget.hangfire.io/feeds/hangfire-pro/Hangfire.Pro/) – batches and batch continuations to create a bunch of background jobs atomically as well as add continuation after all batch jobs executed.
16-
* [Hangfire.Pro.Redis](https://nuget.hangfire.io/feeds/hangfire-pro/Hangfire.Pro.Redis/) – ultra-fast job storage for Hangfire based on key-value store [Redis](http://redis.io).
16+
* [Hangfire.Pro.Redis](https://nuget.hangfire.io/feeds/hangfire-pro/Hangfire.Pro.Redis/) – ultra-fast job storage for Hangfire based on key-value store [Redis](https://redis.io).
1717
* [Hangfire.Pro.Redis.StrongName](https://nuget.hangfire.io/feeds/hangfire-pro/Hangfire.Pro.Redis.StrongName/) – version that linked with StackExchange.Redis.StrongName.
1818
* [Hangfire.Pro.PerformanceCounters](https://nuget.hangfire.io/feeds/hangfire-pro/Hangfire.Pro.PerformanceCounters/) – allows Hangfire to publish its metrics to Windows Performance Counters – the standard way to monitor Windows applications and services.
1919

pro/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ But here is a much simpler method:
2929

3030
<div class="alert alert-warning">
3131
<h4>Configuration required</h4>
32-
<p>Before using batches, please call the <code>GlobalConfiguration.Configuration.UseBatches</code> method as written in <a href="http://docs.hangfire.io/en/latest/background-methods/using-batches.html#installation">the docs</a>.</p>
32+
<p>Before using batches, please call the <code>GlobalConfiguration.Configuration.UseBatches</code> method as written in <a href="https://docs.hangfire.io/en/latest/background-methods/using-batches.html#installation">the docs</a>.</p>
3333
</div>
3434

3535
<pre><span class="type">BatchJob</span>.StartNew(x =>
@@ -78,9 +78,9 @@ Create action does not restrict you to create jobs only in *Enqueued* state. You
7878
<img src="/img/storage-compare.png" alt="Background Jobs Throughput" width="222">
7979
</a>
8080

81-
Hangfire Pro comes with `Hangfire.Pro.Redis` package that uses [Redis](http://redis.io/) server to persist background jobs and other data.
81+
Hangfire Pro comes with `Hangfire.Pro.Redis` package that uses [Redis](https://redis.io/) server to persist background jobs and other data.
8282

83-
Redis is well known for its outstanding [performance](http://redis.io/topics/benchmarks) and here are the results of relative comparison between Hangfire.SqlServer and Hangfire.Redis storages.
83+
Redis is well known for its outstanding [performance](https://redis.io/topics/benchmarks) and here are the results of relative comparison between Hangfire.SqlServer and Hangfire.Redis storages.
8484

8585
<div class="clearfix"></div>
8686

robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
User-agent: *
22
Disallow:
33
Host: hangfire.io
4-
Sitemap: http://hangfire.io/sitemap.xml
4+
Sitemap: https://www.hangfire.io/sitemap.xml

0 commit comments

Comments
 (0)