1234567891011121314151617181920212223242526272829303132 |
- {
- "webservice": {
- "services": [
- {
- "service": "nginx-ui",
- "display_name": "NginxUI",
- "support_alias": true,
- "support_server": true,
- "type": "reverse_proxy",
- "icon": "ui/icons/MyIcon_{0}.png",
- "proxy_target": "http://127.0.0.1:38080",
- "proxy_headers": [
- {
- "name": "host",
- "value": "$host"
- },
- {
- "name": "Upgrade",
- "value": "$http_upgrade"
- },
- {
- "name": "Connection",
- "value": "$connection_upgrade"
- }
- ],
- "connect_timeout": 60,
- "read_timeout": 3600,
- "send_timeout": 60
- }
- ]
- }
- }
|