aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Timeline/appsettings.Development.json3
-rw-r--r--Timeline/appsettings.json10
-rw-r--r--azure-pipelines.yml1
3 files changed, 9 insertions, 5 deletions
diff --git a/Timeline/appsettings.Development.json b/Timeline/appsettings.Development.json
index e203e940..b1cd5a3b 100644
--- a/Timeline/appsettings.Development.json
+++ b/Timeline/appsettings.Development.json
@@ -5,5 +5,8 @@
"System": "Information",
"Microsoft": "Information"
}
+ },
+ "JwtConfig": {
+ "SigningKey": "crupest hahahahahahahhahahahahaha"
}
}
diff --git a/Timeline/appsettings.json b/Timeline/appsettings.json
index 9b57abb2..75395c71 100644
--- a/Timeline/appsettings.json
+++ b/Timeline/appsettings.json
@@ -1,12 +1,12 @@
{
- "JwtConfig": {
- "Issuer": "crupest",
- "Audience": "crupest"
- },
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
- "AllowedHosts": "*"
+ "AllowedHosts": "*",
+ "JwtConfig": {
+ "Issuer": "crupest.xyz",
+ "Audience": "crupest.xyz"
+ }
}
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 3c191665..99772121 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -11,6 +11,7 @@ pool:
variables:
buildConfiguration: 'Release'
+ ASPNETCORE_ENVIRONMENT: 'Development'
steps:
- task: DotNetCoreCLI@2