resource 723 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "webservice": {
  3. "services": [
  4. {
  5. "service": "nginx-ui",
  6. "display_name": "NginxUI",
  7. "support_alias": true,
  8. "support_server": true,
  9. "type": "reverse_proxy",
  10. "icon": "ui/icons/MyIcon_{0}.png",
  11. "proxy_target": "http://127.0.0.1:38080",
  12. "proxy_headers": [
  13. {
  14. "name": "host",
  15. "value": "$host"
  16. },
  17. {
  18. "name": "Upgrade",
  19. "value": "$http_upgrade"
  20. },
  21. {
  22. "name": "Connection",
  23. "value": "$connection_upgrade"
  24. }
  25. ],
  26. "connect_timeout": 60,
  27. "read_timeout": 3600,
  28. "send_timeout": 60
  29. }
  30. ]
  31. }
  32. }