cd contrib; make reinstall

This commit is contained in:
root 2026-06-13 20:57:30 +01:00
commit 198d5bc202
13 changed files with 61 additions and 23 deletions

View file

@ -9,7 +9,10 @@ namespace Yavsc
public static async Task Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
builder.Configuration
.AddJsonFile("appsettings-org.json", optional: false, reloadOnChange: false)
.AddJsonFile($"appsettings-org.{builder.Environment.EnvironmentName}.json", optional: false, reloadOnChange: false)
.AddEnvironmentVariables();
var app = await builder
.ConfigureWebAppServices()
.ConfigurePipeline();

View file

@ -35,8 +35,7 @@
},
"Smtp": {
"Host": "[YOURSMTPHOST]",
"Port": 25,
"EnableSSL": false
"Port": 465
},
"DataProtection": {
"Keys": {