OpenSSL c_name configuration example for CentOS Linux 7

Get the default configuration file c_name for OpenSSL, optimized for CentOS Linux 7. This example configuration ensures optimal compatibility and performance for OpenSSL, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/pki/tls/misc/c_name.

For more configurations and setup guides, visit our related files section to further customize your system.

    #!/bin/sh
#
# print the subject
#

for i in $*
do
	n=`openssl x509 -subject -noout -in $i`
	echo "$i	$n"
done

    
  

Config Details

Location
/etc/pki/tls/misc/c_name
Operating system
CentOS Linux 7
Length
10 lines
MD5 checksum
e6828944a8b442b7a040405fbe3f9a1f

Usage

Download the raw file with wget or curl

Wget

wget -O c_name.example https://exampleconfig.com/static/raw/openssl/centos7/etc/pki/tls/misc/c_name

cURL

curl https://exampleconfig.com/static/raw/openssl/centos7/etc/pki/tls/misc/c_name > c_name.example