Skip to content

Commit c830bd9

Browse files
authored
Merge pull request #888 from DuendeSoftware/wca/add-missing-parenthesis
Added missing )
2 parents aa36d37 + 9ea51b9 commit c830bd9

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.idea/copilot.data.migration.agent.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.edit.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/content/docs/identityserver/deployment/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ builder.Services.Configure<ForwardedHeadersOptions>(options =>
7777
ForwardedHeaders.XForwardedProto;
7878

7979
// exact Addresses of known proxies to accept forwarded headers from.
80-
options.KnownProxies.Add(IPAddress.Parse("203.0.113.42"); // <-- change this value to the IP Address of the proxy
80+
options.KnownProxies.Add(IPAddress.Parse("203.0.113.42")); // <-- change this value to the IP Address of the proxy
8181
8282
// if the proxies could use any address from a block, that can be configured too:
8383
// var network = new IPNetwork(IPAddress.Parse("198.51.100.0"), 24);

0 commit comments

Comments
 (0)