remove update guide for version 1.x

This commit is contained in:
raphael 2020-11-30 15:53:20 +01:00
parent 803af29e3a
commit 32a99433c7
2 changed files with 4 additions and 20 deletions

View File

@ -8,10 +8,6 @@ This is a lightweight NodeJS collaborative Whiteboard/Sketchboard which can easi
[HERE](https://cloud13.de/testwhiteboard/) (Reset every night) [HERE](https://cloud13.de/testwhiteboard/) (Reset every night)
## Updating
Information related to updating this app can be found [here](./doc/updating_guide.md).
## Some Features ## Some Features
- Shows remote user cursors while drawing - Shows remote user cursors while drawing
@ -184,9 +180,9 @@ Add this to your server part:
To run it at /whiteboard. Don't forget to change -> YOURIP! To run it at /whiteboard. Don't forget to change -> YOURIP!
## Apache Reverse Proxy configuration ## Apache Reverse Proxy configuration
```` ```
<VirtualHost example.org:443> <VirtualHost example.org:443>
... ...
# Proxy /whiteboard/ to whiteboard container # Proxy /whiteboard/ to whiteboard container
@ -194,7 +190,8 @@ ProxyPass "/whiteboard/" "http://YOURIP:8080/"
ProxyPassReverse "/whiteboard/" "http://YOURIP:8080/" ProxyPassReverse "/whiteboard/" "http://YOURIP:8080/"
... ...
</VirtualHost> </VirtualHost>
```` ```
To run it at /whiteboard. Don't forget to change -> YOURIP! To run it at /whiteboard. Don't forget to change -> YOURIP!
## Nextcloud integration ## Nextcloud integration

View File

@ -1,13 +0,0 @@
# Updating guide
## From v1.x to 2.x (or latest)
Configuration handling has been updated: the ability to change settings from the CLI or the environment has been removed.
**Configuration is now handled with a yml config file**, which can be overridden with the `--config` CLI argument.
Here is the mapping from old cli argument / env variables to the new config file object:
- accesstoken => `backend.accessToken`
- webdav => `backend.enableWebdav`
- disablesmallestscreen => `frontend.showSmallestScreenIndicator`