File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
OracleLinuxDevelopers/oraclelinux9/httpd/2.4 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ SERVER_CERT="$CERTIFICATE_DIR/fullchain.pem"
66SERVER_KEY=" $KEY_DIR /privkey.pem"
77
88if [ ! -f " $SERVER_KEY " ]; then
9- echo " Generating certificate private key for SSL support"
10- openssl genpkey -algorithm RSA -out " $SERVER_KEY "
9+ echo " Generating certificate private key for SSL support" 1>&2
10+ openssl genpkey -algorithm RSA -out " $SERVER_KEY " 1>&2
1111fi
1212
1313if [ ! -f " $SERVER_CERT " ]; then
14- echo " Generating self-signed certificates for SSL support"
15- openssl req -x509 -new -nodes -key " $SERVER_KEY " -sha256 -days 3650 -out " $SERVER_CERT " -subj " /C=US/ST=California/L=San Francisco/O=Test Company/CN=localhost"
14+ echo " Generating self-signed certificate for SSL support" 1>&2
15+ openssl req -x509 -new -nodes -key " $SERVER_KEY " -sha256 -days 3650 -out " $SERVER_CERT " -subj " /C=US/ST=California/L=San Francisco/O=Test Company/CN=localhost" 1>&2
1616fi
1717
1818httpd -DFOREGROUND
You can’t perform that action at this time.
0 commit comments