All Projects → hacdias → Webdav

hacdias / Webdav

Licence: mit
Simple Go WebDAV server.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Webdav

Vscode Remote Workspace
Multi protocol support for handling remote files like local ones in Visual Studio Code.
Stars: ✭ 197 (-68.73%)
Mutual labels:  webdav, filesystem
Webdav Fs
Node fs wrapper for WebDAV
Stars: ✭ 72 (-88.57%)
Mutual labels:  webdav, filesystem
Distribyted
📂 ➡️ 📺 🎶 🎮 Torrent client with on-demand file downloading as a filesystem.
Stars: ✭ 791 (+25.56%)
Mutual labels:  webdav, filesystem
kodbox
kodbox is a file manager for web. It is a newly designed product based on kodexplorer. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run kodbox either online or locally,on Linux, Windows or Mac based platforms
Stars: ✭ 1,188 (+88.57%)
Mutual labels:  filesystem, webdav
Oneupflysystembundle
A Flysystem integration for your Symfony projects.
Stars: ✭ 541 (-14.13%)
Mutual labels:  filesystem
Dutree
a tool to analyze file system usage written in Rust
Stars: ✭ 499 (-20.79%)
Mutual labels:  filesystem
Wsgidav
A generic and extendable WebDAV server based on WSGI
Stars: ✭ 476 (-24.44%)
Mutual labels:  webdav
Filestash
🦄 A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...
Stars: ✭ 5,231 (+730.32%)
Mutual labels:  webdav
Filegator
Powerful Multi-User File Manager
Stars: ✭ 587 (-6.83%)
Mutual labels:  filesystem
S3fs Fuse
FUSE-based file system backed by Amazon S3
Stars: ✭ 5,733 (+810%)
Mutual labels:  filesystem
Fscrypt
Go tool for managing Linux filesystem encryption
Stars: ✭ 534 (-15.24%)
Mutual labels:  filesystem
Sirdb
👨 a simple, git diffable JSON database on yer filesystem. By the power of NodeJS
Stars: ✭ 508 (-19.37%)
Mutual labels:  filesystem
Joplin
Joplin - an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. Forum: https://discourse.joplinapp.org/
Stars: ✭ 26,916 (+4172.38%)
Mutual labels:  webdav
Zio
A cross-platform abstract/virtual filesystem framework with many built-ins filesystems for .NET
Stars: ✭ 483 (-23.33%)
Mutual labels:  filesystem
Tinydir
Lightweight, portable and easy to integrate C directory and file reader
Stars: ✭ 575 (-8.73%)
Mutual labels:  filesystem
Ls
ls on steroids
Stars: ✭ 458 (-27.3%)
Mutual labels:  filesystem
Exfat
Free exFAT file system implementation
Stars: ✭ 528 (-16.19%)
Mutual labels:  filesystem
S5cmd
Parallel S3 and local filesystem execution tool.
Stars: ✭ 565 (-10.32%)
Mutual labels:  filesystem
Securefs
Filesystem in userspace (FUSE) with transparent authenticated encryption
Stars: ✭ 518 (-17.78%)
Mutual labels:  filesystem
Raidrive.translation
RaiDrive Translation
Stars: ✭ 518 (-17.78%)
Mutual labels:  webdav

webdav

Build Go Report Card Version Docker Pulls

Install

Please refer to the Releases page for more information. There, you can either download the binaries or find the Docker commands to install WebDAV.

Usage

webdav command line interface is really easy to use so you can easily create a WebDAV server for your own user. By default, it runs on a random free port and supports JSON, YAML and TOML configuration. An example of a YAML configuration with the default configurations:

# Server related settings
address: 0.0.0.0
port: 0
auth: true
tls: false
cert: cert.pem
key: key.pem
prefix: /

# Default user settings (will be merged)
scope: .
modify: true
rules: []

# CORS configuration
cors:
  enabled: true
  credentials: true
  allowed_headers:
    - Depth
  allowed_hosts:
    - http://localhost:8080
  allowed_methods:
    - GET
  exposed_headers:
    - Content-Length
    - Content-Range

users:
  - username: admin
    password: admin
    scope: /a/different/path
  - username: encrypted
    password: "{bcrypt}$2y$10$zEP6oofmXFeHaeMfBNLnP.DO8m.H.Mwhd24/TOX2MWLxAExXi4qgi"
  - username: "{env}ENV_USERNAME"
    password: "{env}ENV_PASSWORD"
  - username: basic
    password: basic
    modify:   false
    rules:
      - regex: false
        allow: false
        path: /some/file
      - path: /public/access/
        modify: true

There are more ways to customize how you run WebDAV through flags and environment variables. Please run webdav --help for more information on that.

Systemd

An example of how to use this with systemd is on webdav.service.example.

CORS

The allowed_* properties are optional, the default value for each of them will be *. exposed_headers is optional as well, but is not set if not defined. Setting credentials to true will allow you to:

  1. Use withCredentials = true in javascript.
  2. Use the username:[email protected] syntax.

License

MIT © Henrique Dias

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].