Merge branch 'main' into mku-SparseLedger

This commit is contained in:
Markus Alexander Kuppe 2024-04-25 09:16:58 -07:00 коммит произвёл GitHub
Родитель fbf6ab2cc4 c7b309f531
Коммит fd01a84012
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -7,7 +7,7 @@
- Doc Build: [![docs](https://dev.azure.com/MSRC-CCF/CCF/_apis/build/status/CCF%20GitHub%20Pages?branchName=main)](https://dev.azure.com/MSRC-CCF/CCF/_build/latest?definitionId=4&branchName=main)
- Containers: [![Build and Publish Release Containers](https://github.com/microsoft/CCF/actions/workflows/containers.yml/badge.svg)](https://github.com/microsoft/CCF/actions/workflows/containers.yml)
The [Confidential Consortium Framework (CCF)](https://ccf.dev/) is an open-source framework for building a new category of secure, highly available,
The Confidential Consortium Framework (CCF) is an open-source framework for building a new category of secure, highly available,
and performant applications that focus on multi-party compute and data.
## Get Started with CCF

Просмотреть файл

@ -6,7 +6,7 @@ This page gives a broad overview of the fundamentals of CCF. This is where you s
CCF in a Hundred Words
----------------------
The `Confidential Consortium Framework (CCF) <https://ccf.dev/>`_ is an open-source framework for building a new category of secure, highly-available, and performant applications that focus on multi-party compute and data.
The Confidential Consortium Framework (CCF) is an open-source framework for building a new category of secure, highly-available, and performant applications that focus on multi-party compute and data.
Leveraging the power of trusted execution environments (:term:`TEE`, or enclave), decentralised systems concepts, and cryptography, CCF enables enterprise-ready multiparty systems.

Просмотреть файл

@ -19,7 +19,7 @@
},
"rpcInterfaces": {
"publicHttps": {
"publishedAddress": "ccf.dev:12345",
"publishedAddress": "example.com:12345",
"protocol": "HTTP1"
}
}

Просмотреть файл

@ -20,7 +20,7 @@
},
"rpcInterfaces": {
"publicHttps": {
"publishedAddress": "ccf.dev:12345",
"publishedAddress": "example.com:12345",
"protocol": "HTTP1"
}
}
@ -37,7 +37,7 @@
},
"rpcInterfaces": {
"publicHttps": {
"publishedAddress": "ccf.dev:12345",
"publishedAddress": "example.com:12345",
"protocol": "HTTP1"
}
}

Просмотреть файл

@ -233,7 +233,7 @@ def run_pebble(args):
mock_dns_listen_address = "127.0.0.1:1028"
mock_dns_mgmt_address = "127.0.0.1:1029"
network_name = "my-network.ccf.dev"
network_name = "my-network.example.com"
if not os.path.exists(binary_filename) or not os.path.exists(mock_dns_filename):
raise FileNotFoundError("pebble not found; run playbooks to install it")
@ -366,7 +366,7 @@ def run_lets_encrypt(args):
"ca_certs": ca_certs,
"directory_url": "https://acme-staging-v02.api.letsencrypt.org/directory",
"service_dns_name": service_dns_name,
"contact": ["mailto:admin@ccf.dev"],
"contact": ["mailto:admin@example.com"],
"terms_of_service_agreed": True,
"challenge_type": "http-01",
"challenge_server_interface": "0.0.0.0:80",