-
Notifications
You must be signed in to change notification settings - Fork 12k
Added support for running the webpack dev server in ssl mode #2089
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
i signed it On Tue, Sep 13, 2016 at 4:12 PM googlebot [email protected] wrote:
|
CLAs look good, thanks! |
…ebpack dev server in ssl mode through ng serve command.
…ack-ssl merging with the latest changes fomr the upstream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add an e2e test. You can store a dummy key in github.
@@ -17,6 +17,9 @@ interface IWebpackDevServerConfigurationOptions { | |||
headers?: { [key: string]: string }; | |||
stats?: { [key: string]: boolean }; | |||
inline: boolean; | |||
https: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This field should probably be optional.
@hansl , I am sorry but I do not see the e2e test for serve-webpack.ts. Can you give me some pointers? |
…3093d147cb26c83bb68695' into pull-request-webpack-ssl
@sbaramov the closest test I can find is the one for the |
This looks like a great feature, I would only request that you add another param for certificate authority. Both GoDaddy and Symantec have a ca that can go with the crt and key. |
@filipesilva Thanks, the test is implemented now. |
….beta17 into pull-request-webpack-ssl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests and all look good
We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm. |
@sbaramov PR looks fine, just rebased it for merging & cla got out of whack, can you please comment again that you've signed it? |
Yes i have signed the CLA. |
@sbaramov apparently losing the CLA signing is not something we can recover from on this PR, can you please submit the same code in a new PR? Just tag me in it and I'll take a look. Take care to rebase prior to pushing the new one too, please. |
Closing the pull request in favor of #2792 because the CLA did not work here. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Added support for running the webpack dev server in ssl mode through 'ng serve' command. The command options --ssl, --ssl-key, and --ssl-cert are used to configure the server.
Fixes #1576.