| --- |
| title: Mirror List |
| title_lead: List of CentOS official mirrors. |
| layout: download-mirror |
| --- |
| |
| <div class="alert alert-warning" role="alert"> |
| Starting from CentOS Stream 9 , mirrors are listed in Mirrormanager so use <a href="https://admin.fedoraproject.org/mirrormanager/mirrors/CentOS">this link</a> instead of the list below, covering only CentOS Linux and Stream 8 ! |
| </div> |
| |
| 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/). |
| |
| <table id="download-mirror" class="table table-borderless table-hover"> |
| <thead class="thead-dark"> |
| <tr> |
| <th class="col-0">Location</th> |
| <th class="col-0">Region</th> |
| <th class="col-12">Sponsor</th> |
| <th class="col-0">HTTP</th> |
| <th class="col-0">HTTPS</th> |
| <th class="col-0">Rsync</th> |
| </tr> |
| </thead> |
| <tbody> |
| {% for row in site.data.full-mirrorlist %} |
| <tr> |
| <td class="text-nowrap">{{ row["Location"] }}</td> |
| <td class="text-nowrap">{{ row["Region"] }}</td> |
| <td>{% if row["Sponsor URL"] != "" %}<a href="{{ row["Sponsor URL"] }}">{{ row["Sponsor"] }}</a>{% else %}{{ row["Sponsor"] }}{% endif %}</td> |
| <td class="text-nowrap">{% if row["HTTP mirror"] != "" %}<a href="{{ row["HTTP mirror"] }}"><i class="fas fa-server"></i> Mirror</a>{% endif %}</td> |
| <td class="text-nowrap">{% if row["HTTPS mirror"] != "" %}<a href="{{ row["HTTPS mirror"] }}"><i class="fas fa-server"></i> Mirror</a>{% endif %}</td> |
| <td class="text-nowrap">{% if row["Rsync link"] != "" %}<a href="{{ row["Rsync link"] }}"><i class="fas fa-link"></i> Link</a>{% endif %}</td> |
| </tr> |
| {% endfor %} |
| </tbody> |
| <tfoot> |
| <tr> |
| <th class="searchable">Location</th> |
| <th class="searchable">Region</th> |
| <th class="searchable">Sponsor</th> |
| <th class=""></th> |
| <th class=""></th> |
| <th class=""></th> |
| </tr> |
| </tfoot> |
| </table> |