Update SSL Certificate Request
VSCode SSH - Allows using VSCode to build code as if you were on remote machine. - Remote machine will still need dotnet SDK Added AppSetting Markdown
This commit is contained in:
@ -8,27 +8,38 @@ updated: 2023-07-08T03:32:53.694Z
|
||||
|
||||
## DNS Order
|
||||
|
||||
https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-New%20DNS%20Entry%20%281%29
|
||||
|
||||
- [dns-entry](https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-New%20DNS%20Entry%20%281%29)
|
||||
|
||||

|
||||
|
||||
## Server Certificate (SSL/TLS) Order
|
||||
|
||||
https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-Certificate%20Request
|
||||
## Self-signed Certificate
|
||||
|
||||
```bash
|
||||
cd "C:\Program Files\Git\usr\bin"
|
||||
openssl
|
||||
req -x509 -nodes -days 365 -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\localhost.crt -config L:\Git\NGINX-Conf\conf\includes\localhost.conf
|
||||
req -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\certificate-signing-request.csr -config L:\Git\NGINX-Conf\conf\includes\localhost.conf
|
||||
req -x509 -nodes -days 365 -newkey rsa:2048 -keyout "L:\Git\NGINX-Conf\conf\includes\localhost.key" -out "L:\Git\NGINX-Conf\conf\includes\localhost.crt" -config "L:\Git\NGINX-Conf\conf\includes\localhost.conf"
|
||||
```
|
||||
|
||||
```conf
|
||||
ssl_certificate "includes/localhost.crt";
|
||||
ssl_certificate_key "includes/localhost.key";
|
||||
```
|
||||
|
||||
## Server Certificate (SSL/TLS) Order
|
||||
|
||||
- [certificate-request](https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-Certificate%20Request)
|
||||
|
||||

|
||||
|
||||
### Example for eaf-dev-reporting.mes.infineon.com
|
||||
|
||||
```bash
|
||||
# ssl_certificate "includes/localhost.crt";
|
||||
# ssl_certificate_key "includes/localhost.key";
|
||||
cd "C:\Program Files\Git\usr\bin"
|
||||
openssl
|
||||
req -newkey rsa:2048 -keyout "L:\Git\NGINX-Conf\conf\includes\eaf-dev-reporting.mes.infineon.com.key" -out "L:\Git\NGINX-Conf\conf\includes\certificate-signing-request.csr" -config "L:\Git\NGINX-Conf\conf\includes\eaf-dev-reporting.mes.infineon.com.conf"
|
||||
```
|
||||
|
||||
```conf
|
||||
ssl_certificate "includes/eaf-dev-reporting.mes.infineon.com.cer";
|
||||
ssl_password_file "includes/eaf-dev-reporting.mes.infineon.com.pass";
|
||||
ssl_certificate_key "includes/eaf-dev-reporting.mes.infineon.com.key";
|
||||
|
Reference in New Issue
Block a user