1
0
Fork 0
peertube/client/proxy.config.json

46 lines
927 B
JSON
Raw Normal View History

2019-01-30 03:39:42 -05:00
{
"/api": {
"target": "http://localhost:9000",
"secure": false
},
2019-07-08 09:54:08 -04:00
"/plugins": {
"target": "http://localhost:9000",
"secure": false
},
2019-07-10 08:06:19 -04:00
"/themes": {
"target": "http://localhost:9000",
"secure": false
},
2019-01-30 03:39:42 -05:00
"/static": {
"target": "http://localhost:9000",
"secure": false
2019-04-15 03:43:23 -04:00
},
2019-08-12 02:46:46 -04:00
"/lazy-static": {
"target": "http://localhost:9000",
"secure": false
},
2019-04-15 03:43:23 -04:00
"/socket.io": {
2019-06-11 08:30:49 -04:00
"target": "ws://localhost:9000",
"secure": false,
"ws": true
2019-07-25 04:44:21 -04:00
},
2021-05-27 11:25:52 -04:00
"/client/assets": {
"target": "http://localhost:9000",
"secure": false
},
2021-06-07 11:38:31 -04:00
"/client/locales": {
"target": "http://localhost:9000",
"secure": false
},
2019-07-25 05:40:19 -04:00
"/!(client)**": {
"target": "http://localhost:3000/client/index.html",
"secure": false,
"logLevel": "debug"
},
"/!(client)**/**": {
"target": "http://localhost:3000/client/index.html",
"secure": false,
"logLevel": "debug"
2019-01-30 03:39:42 -05:00
}
}