mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 08:35:15 +01:00
Added X509Certificate2Filename (#27)
This commit is contained in:
@@ -2,21 +2,19 @@
|
||||
using WireMock.Server;
|
||||
using WireMock.Settings;
|
||||
|
||||
namespace WireMock.Net.Console.NETCoreApp
|
||||
namespace WireMock.Net.Console.Record.NETCoreApp
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
static void Main(params string[] args)
|
||||
{
|
||||
string url = "http://localhost:9095/";
|
||||
|
||||
var server = FluentMockServer.Start(new FluentMockServerSettings
|
||||
{
|
||||
Urls = new[] { url },
|
||||
Urls = new[] { "http://localhost:9095/", "https://localhost:9096/" },
|
||||
StartAdminInterface = true,
|
||||
ProxyAndRecordSettings = new ProxyAndRecordSettings
|
||||
{
|
||||
Url = "http://www.bbc.com",
|
||||
Url = "https://www.msn.com",
|
||||
SaveMapping = true
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user