Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PACKAGE_NAME = grommunio-admin-web

# Tools

YARN ?= yarn
YARN ?= $(shell command -v yarn >/dev/null 2>&1 && echo yarn || echo yarnpkg)

# Variables

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ yarn start
## caddy

### Installation
According to https://caddyserver.com/docs/install
According to https://caddyserver.com/docs/install#debian-ubuntu-raspbian
```
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/gpg/gpg.155B6D79CA56EA34.key' | sudo apt-key add -
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/gpg/gpg.155B6D79CA56EA34.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/setup/config.deb.txt?distro=debian&version=any-version' | sudo tee -a /etc/apt/sources.list.d/caddy-stable.list
sudo apt update
sudo apt install caddy
Expand Down Expand Up @@ -142,7 +142,7 @@ Each hostname is the key of an object, which has following keys:
"logo": "anotherUrl.to/logo.png",
"logoLight": "anotherUrl.to/light/logo.png",
"icon": "anotherUrl.to/light/icon.svg"
},
}
}
```
As you can see, it is not necessary to overwrite every image, but the hostnames need to be accurate.
Expand Down