more accurate

This commit is contained in:
Paul Schneider 2026-06-20 18:06:29 +01:00
commit 28b63ce70d

View file

@ -15,11 +15,10 @@
"Title": "yavsc", "Title": "yavsc",
"Slogan": "Yavsc!", "Slogan": "Yavsc!",
"StyleSheet": "/css/default.css", "StyleSheet": "/css/default.css",
"Authority": "https://localhost:5001", "Authority": "https://[Your domaine name]",
"ExternalUrl": "https://localhost:5001", "ExternalUrl": "https://[Your domaine name]",
"CorsAllowedOrigins": [ "CorsAllowedOrigins": [
"https://localhost:5001", "*"
"http://localhost:5000"
], ],
"Banner": "/images/banner-dewang.jpg", "Banner": "/images/banner-dewang.jpg",
"Owner": { "Owner": {
@ -39,7 +38,9 @@
}, },
"Smtp": { "Smtp": {
"Host": "[YOURSMTPHOST]", "Host": "[YOURSMTPHOST]",
"Port": 465 "Port": 465,
"Username": "[YOURSMTPUSERNAME]",
"Password": "[YOURSMTPPASSWORD]"
}, },
"DataProtection": { "DataProtection": {
"Keys": { "Keys": {
@ -86,10 +87,14 @@
"Kestrel": { "Kestrel": {
"Endpoints": { "Endpoints": {
"Http": { "Http": {
"Url": "http://localhost:3003" "Url": "http://localhost:82"
}, },
"Https": { "Https": {
"Url": "https://localhost:3004" "Url": "https://localhost:83",
"Certificate": {
"Path": "/etc/letsencrypt/live/[Your domaine name]/cert.pem",
"KeyPath": "/etc/letsencrypt/live/[Your domaine name]/privkey.pem"
}
} }
} }
} }