Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Add baseUrl example
Browse files Browse the repository at this point in the history
  • Loading branch information
nbarbettini committed Jan 7, 2017
1 parent 7a0807e commit d22a2d5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/Stormpath.AspNet.DocExamples/Startup_Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,18 @@ public void Configuration_ServerUri(IAppBuilder app)
});
#endregion
}

public void Configuration_BaseUrl(IAppBuilder app)
{
#region code/configuration/aspnet/stormpath_baseurl.cs
app.UseStormpath(new StormpathConfiguration()
{
Client = new ClientConfiguration()
{
BaseUrl = "https://enterprise.stormpath.io/v1"
}
});
#endregion
}
}
}

0 comments on commit d22a2d5

Please sign in to comment.