“CLI angular Adicionar certificado sslkey” Respostas de código

CLI angular Adicionar certificado 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

CLI angular Adicionar certificado SSL

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

Respostas semelhantes a “CLI angular Adicionar certificado sslkey”

Perguntas semelhantes a “CLI angular Adicionar certificado sslkey”

Mais respostas relacionadas para “CLI angular Adicionar certificado sslkey” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código