static-web-apps-cli icon indicating copy to clipboard operation
static-web-apps-cli copied to clipboard

CLI errors out when using SSL option

Open indcoder opened this issue 2 years ago • 1 comments

Before filing this issue, please ensure you're using the latest CLI by running swa --version and comparing to the latest version on npm.

Are you accessing the CLI from the default port :4280 ?

  • [ ] No, I am using a different port number (--port) and accessing the CLI from that port
  • [x] Yes, I am accessing the CLI from port :4280

Make sure you are accessing the URL printed in the console when running swa start!

ℹ️ NOTE: Make sure to enable debug logs when running any swa commands using --verbose=silly

Describe the bug

When using the --ssl option in the CLI for swa start command

image

it errors out with the message: "not found from openssl"

image

OpenSSL is installed

image

To Reproduce

Expected behavior The CLI should have provided the URL with https protocol

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS] Windows 11
  • Version [e.g. 22] 22H2

Additional context iT works if I provide my own ssl-cert and ssl-key option .

indcoder avatar Feb 01 '23 10:02 indcoder

I see the CLI breaking down with this message when trying to use SSL:

✖ SWA emulator stoped because API server exited with code 1.

I am using this command in package.json :

webpack --config webpack.config.dev.js && swa start ./dist --ssl --ssl-cert '< path>/< name>.crt' --ssl-key '< path>/< name>.key' --api-location ./api --port 4290 --api-port 4291

  • The .key is not password protected
  • I have openssl installed via GIT for windows
  • (I have not figured out how to make the opensll.exe command available with windows environment path)
  • The certificate is installed in my personal certificate store
  • The command runs with out problems when omitting the ssl parameters

noontz avatar Feb 20 '23 12:02 noontz