appsettings.json 784 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. /*
  10. * 환경변수 추가
  11. * 2025.01.08
  12. */
  13. "AppConfig": {
  14. "AppName": "bitforum.io",
  15. "AppVersion": "1.0.0"
  16. },
  17. "ConnectionStrings": {
  18. //"DefaultConnection": "Server=192.168.0.110;Database=bitforum;Trusted_Connection=True;MultipleActiveResultSets=true"
  19. "DefaultConnection": "Server=192.168.0.110;Database=bitforum;User ID=sa;Password=@@20120726KKh;Encrypt=False;"
  20. },
  21. "EmailSettings": {
  22. "SmtpServer": "smtp.gmail.com",
  23. "SmtpPort": 587,
  24. "FromEmail": "chorongski@gmail.com",
  25. "EmailPassword": "lfxciuwuopjlfdzc"
  26. }
  27. }