appsettings.json 752 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "urls": "http://localhost:6001",
  10. "OrBitFileServerNode": {
  11. "mimeModifiers": [
  12. {
  13. "ext": ".htm3",
  14. "type": "text/html",
  15. "opt": "add"
  16. },
  17. {
  18. "ext": ".mp4",
  19. "opt": "remove"
  20. }
  21. ],
  22. "domain": "http://localhost:6001",
  23. "physicalPath": "C:\\tmp\\MESINTERFACE",
  24. "virtualPath": "/api",
  25. "cachePeriod": 604800,
  26. "enableThumbnail": true,
  27. "thumbnailExts": [
  28. ".jpg",
  29. ".png"
  30. ],
  31. "allowIPs": [
  32. "192.168.88.6",
  33. "127.0.0.1",
  34. "169.254.177.123",
  35. "172.30.0.1",
  36. "169.254.139.124"
  37. ]
  38. }
  39. }