From 464eb9412b61f3191d5062120d1945989d9ede6e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 22 Nov 2021 04:32:09 +0200 Subject: [PATCH] Updated Raspberry Pi (markdown) --- Raspberry-Pi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raspberry-Pi.md b/Raspberry-Pi.md index acfb515..1cb7ccd 100644 --- a/Raspberry-Pi.md +++ b/Raspberry-Pi.md @@ -13,7 +13,7 @@ WeKan only requires: - init.d script - any other script, that sets environment variables and in bundle directory does `node main.js` - most important environment settings are: - - `ROOT_URL=http://192.168.0.200` for WeKan server IP address at local network or `ROOT_URL=https://kanban.example.com` if Caddy/Nginx/Apache2 proxies from HTTPS to WeKan http://127.0.0.1:4000 etc, see https://github.com/wekan/wekan/wiki/Settings + - `ROOT_URL=http://192.168.0.200` for WeKan server IP address at local network or `ROOT_URL=https://kanban.example.com` if [Caddy](https://github.com/wekan/wekan/wiki/Caddy-Webserver-Config)/[Nginx](https://github.com/wekan/wekan/wiki/Nginx-Webserver-Config)/[Apache2](https://github.com/wekan/wekan/wiki/Apache) proxies from HTTPS to WeKan http://127.0.0.1:4000 etc, see https://github.com/wekan/wekan/wiki/Settings - `PORT=80` or `PORT=4000` or some other port where WeKan Nodejs runs. - `MONGO_URL=mongodb://127.0.0.1:27017/wekan` where MongoDB server is, like localhost port 27017 using database name wekan. (Snap usually has MongoDB port at 27019, if it's not changed for example with `sudo snap set wekan mongodb-port='27020'`) - Some other settings are at [start-wekan.sh](https://raw.githubusercontent.com/wekan/wekan/master/start-wekan.sh) (and at https://github.com/wekan/wekan-snap/wiki/Supported-settings-keys#list-of-supported-keys but Snap settings have lowercase minus like `root-url`, where `.sh` scripts and services have uppercase underline like `ROOT_URL`)