Fixed development and production appsettings

This commit is contained in:
2025-10-05 01:17:44 +02:00
parent 581485f7df
commit d9f3c67e8a
3 changed files with 23 additions and 34 deletions

View File

@@ -3,6 +3,7 @@
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning"
}
}, },
"Ldap": { "Ldap": {
"Host": "ld50.dev", "Host": "ld50.dev",
@@ -16,4 +17,3 @@
"UsersOu": "ou=users" "UsersOu": "ou=users"
} }
} }
}

View File

@@ -3,6 +3,7 @@
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning"
}
}, },
"Ldap": { "Ldap": {
"Host": "localhost", "Host": "localhost",
@@ -16,4 +17,3 @@
"UsersOu": "ou=users" "UsersOu": "ou=users"
} }
} }
}

View File

@@ -23,16 +23,5 @@
], ],
"LogFolder": "./Elmah" "LogFolder": "./Elmah"
}, },
"AllowedHosts": "*", "AllowedHosts": "*"
"Ldap": {
"Host": "ld50.dev",
"Port": 8389,
"UseSsl": false,
"BindDn": "cn=admin,dc=localhost",
"BindPassword": "TestLDAP",
"BaseDn": "dc=localhost",
"AssetsOu": "ou=assets",
"LocationsOu": "ou=locations",
"UsersOu": "ou=users"
}
} }