PeerTube/client/proxy.config.json

38 lines
754 B
JSON
Raw Normal View History

2019-01-30 09:39:42 +01:00
{
"/api": {
"target": "http://localhost:9000",
"secure": false
},
2019-07-08 15:54:08 +02:00
"/plugins": {
"target": "http://localhost:9000",
"secure": false
},
2019-07-10 14:06:19 +02:00
"/themes": {
"target": "http://localhost:9000",
"secure": false
},
2019-01-30 09:39:42 +01:00
"/static": {
"target": "http://localhost:9000",
"secure": false
2019-04-15 09:43:23 +02:00
},
2019-08-12 08:46:46 +02:00
"/lazy-static": {
"target": "http://localhost:9000",
"secure": false
},
2019-04-15 09:43:23 +02:00
"/socket.io": {
2019-06-11 14:30:49 +02:00
"target": "ws://localhost:9000",
"secure": false,
"ws": true
2019-07-25 10:44:21 +02:00
},
2019-07-25 11:40:19 +02: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 09:39:42 +01:00
}
}