Skip to content
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

Include the "Turn on end to end encryption" step in Deploy to Linux App Service #223

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions HowTo/gRPC/Linux/.NET/.NET 7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ App Service requires an application setting that specifically listens for HTTP/2

This setting will communicate to your web app which port is specified to listen over HTTP/2 only.

#### 4. Enable End to End Encryption
Lastly, App Service requires End to End encryption to be enabled.

Navigate to the [resource explorer](https://resources.azure.com/) and find your application
Find your application through the following path (click on the + signs):
+ subscriptions > + your-subscription-name > + resourceGroups > + your-resource-group-name > + Providers > + Microsoft.Web > + sites > your-site-name
Click on Edit
Find the “endToEndEncryptionEnabled” property and updated the value to true
Click the PUT button to save the new value

### Confirm a gRPC request call from your local client
Now that the gRPC service is deployed and we have a URL, we can make a call from our local client to test that our channel connects to the server and that our client can receive a response.

Expand Down