Skip to content

Commit

Permalink
Merge branch 'main' into tnolet/adds-rootly-channel-sc00
Browse files Browse the repository at this point in the history
  • Loading branch information
tnolet authored Nov 4, 2024
2 parents e177d03 + 4485658 commit fc6f4b4
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 34 deletions.
2 changes: 1 addition & 1 deletion site/content/docs/api-checks/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ You can assert on different sources. These could be:

**6. Locations**

You can configure your checks to run from our ever-growing amount of global [public](/docs/monitoring/global-locations/) locations or use a Checkly Agent to host your own [private](/docs/private-locations/private-locations-getting-started/)
You can configure your checks to run from our ever-growing amount of global [public](/docs/monitoring/global-locations/) locations or use a Checkly Agent to host your own [private](/docs/private-locations/)
If you don't select more than one data center location, we will pick a random location when retrying checks if you have "double check" enabled.
![locations](/docs/images/api-checks/overview-locations.png)

Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/private-locations/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ menu:
cli: true
---

If you are operating our [Checkly Agent](/docs/private-locations/private-locations-getting-started/) behind an HTTP proxy,
If you are operating our [Checkly Agent](/docs/private-locations/) behind an HTTP proxy,
for example in an enterprise environment, you can use an outgoing proxy for all check traffic. We recommend using the following
setup.

Expand Down
82 changes: 50 additions & 32 deletions site/layouts/docs/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,38 +23,56 @@ <h1 id="{{ anchorize .Title }}">
{{ .Page.TableOfContents }}
</div>
{{- .Content -}}
{{if and (.NextInSection) (.PrevInSection)}}
<div class="d-flex justify-content-between flex-wrap my-5">
<a href="{{.NextInSection.RelPermalink}}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="previous">
{{ .NextInSection.Title }}
</a>
<a href="{{.PrevInSection.RelPermalink}}" class="nav-docs">{{ .PrevInSection.Title }}
<img src="/docs/images/icons/right-arrow.svg" class="ml-2" width="10px" height="10px" alt="next">
</a>
</div>
{{ else if .PrevInSection }}
<div class="d-flex justify-content-between flex-wrap my-5">
<a href="{{ .CurrentSection.RelPermalink }}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="previous">
{{ .CurrentSection.Title }}
</a>
<a href="{{.PrevInSection.RelPermalink}}" class="nav-docs">{{ .PrevInSection.Title }}
<img src="/docs/images/icons/right-arrow.svg" class="ml-2" width="10px" height="10px" alt="previous">
</a>
</div>
{{ else if .NextInSection}}
<div class="text-left my-5">
<a href="{{.NextInSection.RelPermalink}}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="next">
{{ .NextInSection.Title }}
</a>
</div>

{{ else }}

{{end}}

{{ if and (.NextInSection) (.PrevInSection) }}
<div class="d-flex justify-content-between flex-wrap my-5">
<a href="{{.NextInSection.RelPermalink}}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="previous">
{{ if .NextInSection.Params.displayTitle }}
{{ .NextInSection.Params.displayTitle }}
{{ else }}
{{ .NextInSection.Title }}
{{ end }}
</a>
<a href="{{.PrevInSection.RelPermalink}}" class="nav-docs">
{{ if .PrevInSection.Params.displayTitle }}
{{ .PrevInSection.Params.displayTitle }}
{{ else }}
{{ .PrevInSection.Title }}
{{ end }}
<img src="/docs/images/icons/right-arrow.svg" class="ml-2" width="10px" height="10px" alt="next">
</a>
</div>
{{ else if .PrevInSection }}
<div class="d-flex justify-content-between flex-wrap my-5">
<a href="{{ .CurrentSection.RelPermalink }}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="previous">
{{ if .CurrentSection.Params.displayTitle }}
{{ .CurrentSection.Params.displayTitle }}
{{ else }}
{{ .CurrentSection.Title }}
{{ end }}
</a>
<a href="{{.PrevInSection.RelPermalink}}" class="nav-docs">
{{ if .PrevInSection.Params.displayTitle }}
{{ .PrevInSection.Params.displayTitle }}
{{ else }}
{{ .PrevInSection.Title }}
{{ end }}
<img src="/docs/images/icons/right-arrow.svg" class="ml-2" width="10px" height="10px" alt="previous">
</a>
</div>
{{ else if .NextInSection }}
<div class="text-left my-5">
<a href="{{.NextInSection.RelPermalink}}" class="nav-docs">
<img src="/docs/images/icons/left-arrow.svg" class="mr-2" width="10px" height="10px" alt="next">
{{ if .NextInSection.Params.displayTitle }}
{{ .NextInSection.Params.displayTitle }}
{{ else }}
{{ .NextInSection.Title }}
{{ end }}
</a>
</div>
{{ end }}
<hr class="pt-2 mb-2" />
<p class="contribute-doc">
{{ with .GitInfo }}
Expand Down

0 comments on commit fc6f4b4

Please sign in to comment.