Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/newam/mydav
My WebDAV server implementation.
https://github.com/newam/mydav
Last synced: 16 days ago
JSON representation
My WebDAV server implementation.
- Host: GitHub
- URL: https://github.com/newam/mydav
- Owner: newAM
- License: mit
- Created: 2023-07-24T19:29:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T23:46:28.000Z (18 days ago)
- Last Synced: 2024-10-18T05:18:41.272Z (18 days ago)
- Language: Nix
- Size: 226 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mydav
I was looking for a WebDAV server, but at the time of writing (2023-07-24) I
found:* The popular go implementation archived 2022-09:
* The rust implementation unmaintained since 2022-05:
* The nginx extension unmaintained since 2018-12:I also tried [SeaweedFS](https://github.com/seaweedfs/seaweedfs),
but I found that it was too complex to quickly debug issues I was running into.[messense/dav-server-rs] is actively maintained (at the time of writing),
but did not provide a server implementation.This is my server implementation using [messense/dav-server-rs] until I find
a more mature solution.[messense/dav-server-rs]: https://github.com/messense/dav-server-rs
## Usage
This is designed to be used with [NixOS], but should work with most Linux
distributions.* Add this repository to your flake inputs:
```nix
{
inputs = {
unstable.url = "github:nixos/nixpkgs/nixos-unstable";mydav.url = "github:newam/mydav";
mydav.inputs.nixpkgs.follows = "unstable";
};
}
```* Add `mydav.overlays.default` to `nixpkgs.overlays`.
* Import the `mydav.nixosModules.default` module.
* Configure.[NixOS]: https://nixos.org/