mirror of
https://github.com/YunoHost-Apps/baikal_ynh.git
synced 2024-09-03 18:16:11 +02:00
[fix] Serve .well-known paths at the root to be discovered
This commit is contained in:
parent
e065a1afc2
commit
fa9af34fff
2 changed files with 13 additions and 6 deletions
15
README.md
15
README.md
|
@ -6,12 +6,19 @@ sabre/dav, that includes an administrative interface for easy management.
|
|||
|
||||
**Shipped version:** 0.4.4
|
||||
|
||||
## Features
|
||||
|
||||
In addition to Baïkal core features, the following are made available with
|
||||
this package:
|
||||
|
||||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain
|
||||
|
||||
## TODO
|
||||
|
||||
* Update `config.php` and `config.system.php` at upgrade
|
||||
|
||||
## Links ##
|
||||
## Links
|
||||
|
||||
**Baïkal**: http://baikal-server.com/
|
||||
|
||||
**YunoHost**: https://yunohost.org/
|
||||
* Report a bug: https://dev.yunohost.org/projects/apps/issues
|
||||
* Baïkal website: http://baikal-server.com/
|
||||
* YunoHost website: https://yunohost.org/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
location = {PATH}/.well-known/carddav {
|
||||
location = /.well-known/carddav {
|
||||
return 301 https://$server_name{PATH}/card.php;
|
||||
}
|
||||
location = {PATH}/.well-known/caldav {
|
||||
location = /.well-known/caldav {
|
||||
return 301 https://$server_name{PATH}/cal.php;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue