“Angular CLI Ajouter un certificat SSLKEY” Réponses codées

Angular CLI Ajouter un certificat SSLKEY

//On the angular.json file add the configurations "sslKey", "sslCert" and "ssl" with the value "true"
//Don't forget to create a folder "ssl" on the root of your project, and add the certicate (.crt) and key (.key) 

"serve": {
          "options": {
            "sslKey": "./ssl/server.key",
            "sslCert": "./ssl/server.crt",
            "ssl": true
          },
          ...
}
Watcher O_O

Angular CLI Ajouter un certificat SSL

ng serve -o --ssl true --ssl-key [PATH_TO_KEY] --ssl-cert [PATH_TO_CRT]
Watcher O_O

Réponses similaires à “Angular CLI Ajouter un certificat SSLKEY”

Questions similaires à “Angular CLI Ajouter un certificat SSLKEY”

Plus de réponses similaires à “Angular CLI Ajouter un certificat SSLKEY” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code