“Angular CLI SSLKEY -Zertifikat hinzufügen” Code-Antworten

Angular CLI SSLKEY -Zertifikat hinzufügen

//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 SSL -Zertifikat hinzufügen

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

Ähnliche Antworten wie “Angular CLI SSLKEY -Zertifikat hinzufügen”

Fragen ähnlich wie “Angular CLI SSLKEY -Zertifikat hinzufügen”

Weitere verwandte Antworten zu “Angular CLI SSLKEY -Zertifikat hinzufügen” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen