davis/README.md

218 lines
6.6 KiB
Markdown
Raw Normal View History

2019-10-29 12:00:39 +01:00
Davis
---
A simple, fully translatable admin interface and frontend for `sabre/dav` based on [Symfony 4](https://symfony.com/) and [Bootstrap 4](https://getbootstrap.com/), largely inspired by [Baïkal](https://github.com/sabre-io/Baikal).
2019-10-30 12:19:18 +01:00
![Dashboard page](https://raw.githubusercontent.com/tchapi/davis/master/_screenshots/dashboard.png)
![User creation page](https://raw.githubusercontent.com/tchapi/davis/master/_screenshots/user.png)
2019-10-30 12:19:18 +01:00
# Requirements
PHP > 7.3.0 (with `pdo_mysql` and `intl` extensions), MySQL (or MariaDB).
2019-10-29 12:00:39 +01:00
# Installation
0. Clone this repository
2019-10-30 12:19:18 +01:00
1. Retrieve the dependencies:
2019-10-30 12:19:18 +01:00
```
composer install
```
2019-10-30 12:19:18 +01:00
2. At least put the correct credentials to your database in your `.env.local` file so you can easily migrate your database.
3. Migrate the database:
```
bin/console migrate
```
**Davis** can be used with a pre-existing MySQL database (_for instance, one previously managed by Baïkal_). The only missing table would be the `migrations` table, that you can recreate automatically when running the migrations.
> The migrations are not _exactly_ equivalent to those of Baïkal, and allow for a bit more room in columns.
## Configuration
Create your own `.env.local` file to change the necessary variables, if you plan on using `symfony/dotenv`.
> If your installation is behind a web server like Apache or Nginx, you can setup the env vars directly in your Apache or Nginx configuration (see below). Skip this part in this case.
a. The database url (_you should already have it configured since you migrated the database previously_)
```
DATABASE_URL=mysql://db_user:db_pass@host:3306/db_name
```
b. The admin password for the backend
```
ADMIN_LOGIN=admin
ADMIN_PASSWORD=test
```
c. The auth Realm and method for HTTP auth
```
AUTH_REALM=SabreDAV
AUTH_METHOD=Digest # can be "Basic" or "Digest"
```
d. The global flags to enable CalDAV, CardDAV and WebDAV
```
CALDAV_ENABLED=true
CARDDAV_ENABLED=true
WEBDAV_ENABLED=false
```
e. The email address that your invites are going to be sent from
```
INVITE_FROM_ADDRESS=no-reply@example.org
```
f. The paths for the WebDAV installation
> I recommend that you use absolute directories so you know exactly where your files reside.
```
TMP_DIR='/tmp'
PUBLIC_DIR='/public'
```
# Access / Webserver
A simple status page is available on the root `/` of the server.
The administration interface is available at `/dashboard`. You need to login to use it (See `ADMIN_LOGIN` and `ADMIN_PASSWORD` env vars).
The main endpoint for CalDAV, WebDAV or CardDAV is at `/dav`.
### Example Apache 2.4 configuration
<VirtualHost *:80>
ServerName dav.domain.tld
DocumentRoot /var/www/davis/public
DirectoryIndex /index.php
<Directory /var/www/davis/public>
AllowOverride None
Order Allow,Deny
Allow from All
FallbackResource /index.php
</Directory>
# Apache > 2.4.25, else remove this part
<Directory /var/www/davis/public/bundles>
FallbackResource disabled
</Directory>
# Env vars (if you did not use .env.local)
SetEnv APP_ENV prod
SetEnv APP_SECRET <app-secret-id>
SetEnv DATABASE_URL "mysql://db_user:db_pass@host:3306/db_name"
# ... etc
</VirtualHost>
### Example Nginx configuration
server {
server_name dav.domain.tld;
root /var/www/davis/public;
location / {
try_files $uri /index.php$is_args$args;
}
location /bundles {
try_files $uri =404;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; # Change for your PHP version
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
# Env vars (if you did not use .env.local) fastcgi_param APP_ENV prod;
fastcgi_param APP_SECRET <app-secret-id>;
fastcgi_param DATABASE_URL "mysql://db_user:db_pass@host:3306/db_name";
# ... etc ...
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
}
More examples and information [here](https://symfony.com/doc/current/setup/web_server_configuration.html).
## Well-known redirections for CalDAV and CardDAV
Web-based protocols like CalDAV and CardDAV can be found using a discovery service. Some clients require that you implement a path prefix to point to the correct location for your service. See [here](https://en.wikipedia.org/wiki/List_of_/.well-known/_services_offered_by_webservers) for more info.
If you use Apache as your webserver, you can enable the redirections with:
RewriteEngine On
RewriteRule ^\.well-known/carddav /dav/ [R=301,L]
RewriteRule ^\.well-known/caldav /dav/ [R=301,L]
Make sure that `mod_rewrite` is enabled on your installation beforehand.
If you use Nginx, you can add this to your configuration:
location / {
rewrite ^/.well-known/carddav /dav/ redirect;
rewrite ^/.well-known/caldav /dav/ redirect;
}
# Dockerized installation
A `Dockerfile` is available for you to compile the container.
We use `ssmtp` as a delivery service for a configured mailhost instead of using local delivery (_that should work out of the box_). You can ignore this or remove it from the Dockerfile if you want.
A `docker-compose.yml` file is also included as a minimal example setup with a MariaDB database and Nginx as a reverse proxy.
You can start the containers with :
2019-11-13 11:16:04 +01:00
cd docker && docker-compose up -d
**⚠ Do not forget to create the database the first time you run the container** :
docker exec -it davis bash -c "APP_ENV=prod bin/console migrate --no-interaction"
Then, head up to `http://<YOUR_DOCKER_IP>` to see the status display :
![Status page](https://raw.githubusercontent.com/tchapi/davis/master/_screenshots/status.png)
2019-10-29 12:00:39 +01:00
> Note that there is no user, no principals, etc created by default.
2019-10-30 12:19:18 +01:00
# Development
You can spin off a local PHP webserver with:
php -S localhost:8000 -t public
If you change or add translations, you need to update the `messages` XLIFF file with:
2019-10-30 12:19:18 +01:00
bin/console translation:update en --force --domain=messages+intl-icu
2019-10-29 12:00:39 +01:00
# Libraries used
- Symfony 4 (Licence : MIT)
- Sabre-io/dav (Licence : BSD-3-Clause)
- Bootstrap 4 (Licence : MIT)
_This project does not use any pipeline for the assets since the frontend side is relatively simple, and based on Bootstrap._
# Licence
2019-10-30 12:19:18 +01:00
This project is release under the MIT licence. See the LICENCE file