Browse Source
Merge pull request #19040 from abpframework/EngincanV-patch-1
Add kestrel https url to VoloDocs sample.
pull/19041/head
SALİH ÖZKARA
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
1 deletions
-
modules/docs/app/VoloDocs.Web/appsettings.json
|
|
|
@ -1,4 +1,11 @@ |
|
|
|
{ |
|
|
|
"Kestrel": { |
|
|
|
"EndPoints": { |
|
|
|
"Https": { |
|
|
|
"Url": "https://localhost:5001" |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
"ConnectionString": "Server=localhost;Database=VoloDocs;Trusted_Connection=True;TrustServerCertificate=True", |
|
|
|
"ElasticSearch": { |
|
|
|
"Url": "http://localhost:9200" |
|
|
|
@ -8,4 +15,4 @@ |
|
|
|
"DocumentResource.AbsoluteExpirationRelativeToNow": "24:00:00", |
|
|
|
"DocumentResource.SlidingExpiration": "02:00:00" |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|