Answers for "nginx ssl configuration ubuntu"

2

nginx ssl

server {
    listen              443 ssl;
    server_name         www.example.com;
    ssl_certificate     www.example.com.crt;
    ssl_certificate_key www.example.com.key;
    ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers         HIGH:!aNULL:!MD5;
    ...
}
Posted by: Guest on September-15-2021
0

nginx ssl configuration ubuntu with pfx file

## Code used by anowar vai for abbvie
## See /home/bs331/Documets/useful-commts

openssl pkcs12 -in client_ssl.pfx -out client_ssl.pem -clcerts
openssl pkcs12 -in client_ssl.pfx -out root.pem -cacerts

openssl pkcs12 -in domain.pfx -out domain.pem -clcerts

openssl pkcs12 -export -in file.pfx  -out domain.pem -password pass:hidden-password

openssl pkcs12 -in domain.pfx -nocerts -out domain.key
Posted by: Guest on August-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language