Skip to content

Commit

Permalink
Clipboard: fix a bug about 'copy from selenoid and paste to selenoid' (
Browse files Browse the repository at this point in the history
…#497)

* feat: add two functions
    1. copy from selenoid clipboard to local
    2. paste to selenoid from local clipboard

* feat: add two functions
    1. copy from selenoid clipboard to local
    2. paste to selenoid from local clipboard

* feat: add two functions
    1. copy from selenoid clipboard to local
    2. paste to selenoid from local clipboard

* feat: add two functions
    1. copy from selenoid clipboard to local
    2. paste to selenoid from local clipboard

* feat: add two functions
    1. copy from selenoid clipboard to local
    2. paste to selenoid from local clipboard

* bug: copy from selenoid and paste to selenoid
    description: Send the request to another container can not use ip=localhost, should use linked container name + port
  • Loading branch information
kaylezhangzhaoLin authored Oct 13, 2022
1 parent be94f72 commit bd7acd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/setupProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function (app) {
agent: agent,
})
);
app.use(createProxyMiddleware("/clipboard", { target: "http://localhost:4444" }));
app.use(createProxyMiddleware("/clipboard", { target: "http://selenoid:4444" }));
app.use(createProxyMiddleware("/status", { target: "http://localhost:8080" }));
app.use(createProxyMiddleware("/video/", { target: "http://localhost:8080" }));
app.use(createProxyMiddleware("/wd/hub/", { target: "http://localhost:8080" }));
Expand Down

0 comments on commit bd7acd1

Please sign in to comment.