This commit is contained in:
Raphael 2022-01-25 13:31:00 +01:00
parent f674156f75
commit df53c41951
2 changed files with 1 additions and 5 deletions

View File

@ -170,10 +170,6 @@ Many more settings can be tweaked. All of them are described in the [default con
- Whiteboards are gone if you restart the Server enable "enableFileDatabase" in the config file or export the board to prevent that.
- You should be able to customize the layout without ever touching the whiteboard.js (take a look at index.html & main.js)
## ToDo
- Make undo function more reliable on texts
## Nginx Reverse Proxy configuration
Add this to your server part:

View File

@ -26,7 +26,7 @@ function startBackendServer(port) {
var io = require("socket.io")(server, { path: "/ws-api" });
WhiteboardInfoBackendService.start(io);
console.log("Webserver & socketserver running on port:" + port);
console.log("socketserver running on port:" + port);
const { accessToken, enableWebdav } = config.backend;