summarylogtreecommitdiffstats
path: root/install.sh
blob: 75840579e805f5ea3d373c47dce14897cc9979bb (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
echo "Don't forget to update your webserver config. Nginx example:"
cat <<EOF
server {
  index index.html
  location /web {
    root /usr/share/webapps/owntracks-frontend;
  }
}
EOF
}