mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* base styling and action placeholders for package sideload * apparently didnt add new folder * wip * parse manifest and icon from s9pk to upload * wip handle s9pk upload * adjust types, finalize actions, cleanup * clean up and fix data clearing and response * include rest rpc in proxy conf sample * address feedback to use shorthand falsy coercion * update copy and invalid package file ux * do not wait package upload, instead show install progress * fix proxy for rest rpc rename sideload package page titles
23 lines
387 B
JSON
23 lines
387 B
JSON
{
|
|
"/rpc/v1": {
|
|
"target": "http://<CHANGE_ME>/rpc/v1"
|
|
},
|
|
"/ws/*": {
|
|
"target": "http://<CHANGE_ME>",
|
|
"secure": false,
|
|
"ws": true
|
|
},
|
|
"/public/*": {
|
|
"target": "http://<CHANGE_ME>/public",
|
|
"pathRewrite": {
|
|
"^/public": ""
|
|
}
|
|
},
|
|
"/rest/rpc/*": {
|
|
"target": "http://<CHANGE_ME>/rest/rpc",
|
|
"pathRewrite": {
|
|
"^/rest/rpc": ""
|
|
}
|
|
}
|
|
}
|