diff --git a/README.md b/README.md index 7f6f766ed..f9c38fec8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/overview/what_is_ccf.rst b/doc/overview/what_is_ccf.rst index 08afd82a9..88e7bf5f0 100644 --- a/doc/overview/what_is_ccf.rst +++ b/doc/overview/what_is_ccf.rst @@ -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) `_ 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. diff --git a/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_GetNode.json b/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_GetNode.json index 8be95c14d..6dfe08dfb 100644 --- a/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_GetNode.json +++ b/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_GetNode.json @@ -19,7 +19,7 @@ }, "rpcInterfaces": { "publicHttps": { - "publishedAddress": "ccf.dev:12345", + "publishedAddress": "example.com:12345", "protocol": "HTTP1" } } diff --git a/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_ListNodes.json b/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_ListNodes.json index e844e179e..c5c92917e 100644 --- a/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_ListNodes.json +++ b/doc/schemas/mccf/2023-06-01-preview/examples/ServiceState_ListNodes.json @@ -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" } } diff --git a/tests/acme_endorsement.py b/tests/acme_endorsement.py index ce99b4027..eb4944959 100644 --- a/tests/acme_endorsement.py +++ b/tests/acme_endorsement.py @@ -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",