Created
December 3, 2025 12:44
-
-
Save chongshenng/613abf23d2eca9fa1242a3e22916b0d0 to your computer and use it in GitHub Desktop.
An example `certificate.conf` for creating SuperNode authentication keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [req] | |
| default_bits = 4096 | |
| prompt = no | |
| default_md = sha256 | |
| req_extensions = req_ext | |
| distinguished_name = dn | |
| [dn] | |
| C = DE | |
| ST = HH | |
| O = Flower | |
| CN = localhost | |
| [req_ext] | |
| subjectAltName = @alt_names | |
| [alt_names] | |
| DNS.1 = localhost | |
| DNS.2 = fleet-supergrid.flower.ai | |
| IP.1 = ::1 | |
| IP.2 = 127.0.0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment