PeerTube/client/proxy.config.json

46 lines
927 B
JSON
Raw Normal View History

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