Skip to content

Commit

Permalink
Fix mistake in Storage and Event Hub documentation for required certi…
Browse files Browse the repository at this point in the history
…ficate folder path for .NET integration.
  • Loading branch information
brdeyo committed Jul 12, 2024
1 parent 57e7920 commit fcd1ea5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions website/docs/guides/0600-integration-blob-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe where Virtual Client/.NET will search to find certificates.

* **Specific User**
When running the Virtual Client application as a specific user (e.g. /home/\{user\} ./VirtualClient), the application (.NET) will search for certificates
in `/{user}/.dotnet/corefx/cryptography/x509stores/my/` directory location. The directory MUST allow at least read/write access for the user to this directory and the
in `/home/{user}/.dotnet/corefx/cryptography/x509stores/my/` directory location. The directory MUST allow at least read/write access for the user to this directory and the
certificate files within it or Virtual Client will hit a permissions issue.

<mark>
Expand All @@ -64,10 +64,10 @@ describe where Virtual Client/.NET will search to find certificates.
directory using the following command option:

``` bash
sudo chmod -R 700 /{user}/.dotnet/corefx/cryptography/x509stores/my/
sudo chmod -R 700 /home/{user}/.dotnet/corefx/cryptography/x509stores/my/

# e.g.
sudo chmod -R 700 /anyuser/.dotnet/corefx/cryptography/x509stores/my/
sudo chmod -R 700 /home/anyuser/.dotnet/corefx/cryptography/x509stores/my/
```

### Referencing Certificates on Windows
Expand Down
6 changes: 3 additions & 3 deletions website/docs/guides/0610-integration-event-hub.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe where Virtual Client/.NET will search to find certificates.

* **Specific User**
When running the Virtual Client application as a specific user (e.g. /home/\{user\} ./VirtualClient), the application (.NET) will search for certificates
in `/{user}/.dotnet/corefx/cryptography/x509stores/my/` directory location. The directory MUST allow at least read/write access for the user to this directory and the
in `/home/{user}/.dotnet/corefx/cryptography/x509stores/my/` directory location. The directory MUST allow at least read/write access for the user to this directory and the
certificate files within it or Virtual Client will hit a permissions issue.

<mark>
Expand All @@ -38,10 +38,10 @@ describe where Virtual Client/.NET will search to find certificates.
directory using the following command option:

``` bash
sudo chmod -R 700 /{user}/.dotnet/corefx/cryptography/x509stores/my/
sudo chmod -R 700 /home/{user}/.dotnet/corefx/cryptography/x509stores/my/

# e.g.
sudo chmod -R 700 /anyuser/.dotnet/corefx/cryptography/x509stores/my/
sudo chmod -R 700 /home/anyuser/.dotnet/corefx/cryptography/x509stores/my/
```

### Referencing Certificates on Windows
Expand Down

0 comments on commit fcd1ea5

Please sign in to comment.