Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chappio/simple-webdav

A simple single-binary webdav server with htpasswd support
https://github.com/chappio/simple-webdav

Last synced: 12 days ago
JSON representation

A simple single-binary webdav server with htpasswd support

Awesome Lists containing this project

README

        

# Simple WebDAV Server

This is a tiny implementation of a user-scoped WebDAV server.

1. Authentication through .htpasswd file
2. All users have their own root directories
3. No databases required

## Installation

To install the server you simply download the binary.

### Linux

```bash
# Download the binary
wget -O webdav https://github.com/ChappIO/simple-webdav/releases/latest/download/webdav_linux_amd64
# Move it into a more appropriate place
chmod +x webdav
sudo mv webdav /usr/local/bin/webdav
# Test
webdav --version
```

### FreeBSD (TrueNAS)

```bash
# Download the binary
wget -O webdav https://github.com/ChappIO/simple-webdav/releases/latest/download/webdav_freebsd_amd64
# Move it into a more appropriate place
chmod +x webdav
mv webdav /usr/local/bin/webdav
# Test
webdav --version
```