Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

escape special charecters that can be set through the command line ar… #290

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions cmd/fabric-ca-server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const (
#############################################################################

# Version of config file
version: <<<VERSION>>>
version: "<<<VERSION>>>"

# Server's listening port (default: 7054)
port: 7054
Expand Down Expand Up @@ -159,8 +159,8 @@ registry:

# Contains identity information which is used when LDAP is disabled
identities:
- name: <<<ADMIN>>>
pass: <<<ADMINPW>>>
- name: "<<<ADMIN>>>"
pass: "<<<ADMINPW>>>"
type: client
affiliation: ""
attrs:
Expand Down Expand Up @@ -339,7 +339,7 @@ signing:
# if the server creates a self-signed TLS certificate.
###########################################################################
csr:
cn: <<<COMMONNAME>>>
cn: "<<<COMMONNAME>>>"
keyrequest:
algo: ecdsa
size: 256
Expand All @@ -350,11 +350,11 @@ csr:
O: Hyperledger
OU: Fabric
hosts:
- <<<MYHOST>>>
- "<<<MYHOST>>>"
- localhost
ca:
expiry: 131400h
pathlength: <<<PATHLENGTH>>>
pathlength: "<<<PATHLENGTH>>>"

###########################################################################
# Each CA can issue both X509 enrollment certificate as well as Idemix
Expand Down
Loading