diff --git a/v2.0/.vscode/launch.json b/v2.0/.vscode/launch.json new file mode 100644 index 0000000..0714eae --- /dev/null +++ b/v2.0/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/LetsEncrypt/bin/Debug/netcoreapp3.1/LetsEncrypt.dll", + "args": [], + "cwd": "${workspaceFolder}/LetsEncrypt", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/v2.0/.vscode/tasks.json b/v2.0/.vscode/tasks.json new file mode 100644 index 0000000..c231259 --- /dev/null +++ b/v2.0/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/v2.0/LetsEncrypt/appsettings.json b/v2.0/LetsEncrypt/appsettings.json index 7b14f63..87917dc 100644 --- a/v2.0/LetsEncrypt/appsettings.json +++ b/v2.0/LetsEncrypt/appsettings.json @@ -1,7 +1,7 @@ { "AppSettings": { - "active": "StagingV2", + "active": "ProductionV2", "environments": [ { @@ -27,7 +27,7 @@ "customers": [ { "id": "9b4c8584-dc83-4388-b45f-2942e34dca9d", - "contacts": [ "maksym.sadovnychyy@google.com" ], + "contacts": [ "maksym.sadovnychyy@gmail.com" ], "name": "Maksym", "lastname": "Sadovnychyy", @@ -44,38 +44,33 @@ "api.maks-it.com", "www.api.maks-it.com", "dev.maks-it.com", - "www.dev.maks-it.com", - - "cleaningacademy.maks-it.com", - "www.cleaningacademy.maks-it.com" + "www.dev.maks-it.com" ], "challenge": "http-01" } ] }, { - "id": "d6be989c-3b68-480d-9f4f-b7317674847a", - "contacts": [ "anastasiia.pavlovskaia@gmail.com" ], - - "name": "Anastasiia", - "lastname": "Pavlovskaia", + "id": "341ebe34-e2b3-4645-9f54-aa4fe8eb0250", + "contacts": [ "maksym.sadovnychyy@gmail.com" ], + "name": "Maksym", + "lastname": "Sadovnychyy", "sites": [ { - - "name": "nastyarey.com", + "name": "aerusitalia.it", "hosts": [ - "nastyarey.com", - "www.nastyarey.com", - "it.nastyarey.com", - "www.it.nastyarey.com", - "ru.nastyarey.com", - "www.ru.nastyarey.com" + "aerusitalia.it", + "www.aerusitalia.it" ], "challenge": "http-01" } ] } + ], + + "_customers": [ + ] } }