---
title: Mirror List
title_lead: List of CentOS official mirrors.
layout: page-download-mirror
permalink: /:path/:basename/index.html
---
CentOS welcomes new mirror sites. If you are considering setting up a public
mirror site for CentOS, [please follow the mirror
guidelines](http://wiki.centos.org/HowTos/CreatePublicMirrors) to make sure
that your mirror is consistent with the other mirror sites. If you're
searching for mirrors providing AltArch content (like ppc64, ppc64le, aarch64,
armfhp) please use [this link](/download/mirrors-altarch/).
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for mirror...">
<table id="myTable">
<tr>
<th>Region</th>
<th>Country</th>
<th>Sponsor</th>
<th>HTTP Location</th>
<th>RSYNC Location</th>
</tr>
{% for row in site.data.full-mirrorlist %}
<tr>
<td>{{ row["Location"] }}</td>
<td>{{ row["Region"] }}</td>
<td>{% if row["HTTP Location"] != "" %}<a href="{{ row["HTTP Location"] }}">{{ row["Sponsor"] }}</a>{% else %}{{ row["Sponsor"] }}{% endif %}</td>
<td>{% if row["HTTPS Location"] != "" %}<a href="{{ row["HTTPS Location"] }}"><i class="fas fa-server"></i> Mirror</a>{% endif %}</td>
<td>{% if row["RSYNC Location"] != "" %}<a href="{{ row["RSYNC Location"] }}"><i class="fas fa-server"></i> Mirror</a>{% endif %}</td>
</tr>
{% endfor %}
</table>