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",
"Slogan": "Yavsc!",
"StyleSheet": "/css/default.css",
"Authority": "https://localhost:5001",
"ExternalUrl": "https://localhost:5001",
"Authority": "https://[Your domaine name]",
"ExternalUrl": "https://[Your domaine name]",
"CorsAllowedOrigins": [
"https://localhost:5001",
"http://localhost:5000"
"*"
],
"Banner": "/images/banner-dewang.jpg",
"Owner": {
@ -39,7 +38,9 @@
},
"Smtp": {
"Host": "[YOURSMTPHOST]",
"Port": 465
"Port": 465,
"Username": "[YOURSMTPUSERNAME]",
"Password": "[YOURSMTPPASSWORD]"
},
"DataProtection": {
"Keys": {
@ -86,10 +87,14 @@
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3003"
"Url": "http://localhost:82"
},
"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"
}
}
}
}