Sign inSign up

bxwill/webfs

By bxwill

Updated over 4 years ago

Image
0

208

bxwill/webfs repository overview

Web File System

org author httpd

Usage

docker run -d -p 80:80 -v /local_dir:/webfs -it bxwill/webfs:nginx1.21-alpine 
nginx conf
server {
    listen       80;
    server_name  localhost;

    charset utf-8;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        autoindex               on;
        autoindex_exact_size    on;
        autoindex_localtime     on;
        root    /webfs;
        client_body_temp_path   /webfs/client_temp;
        dav_methods             PUT DELETE MKCOL COPY MOVE;
        dav_ext_methods         PROPFIND OPTIONS;
        create_full_put_path    on;
        dav_access              user:rw group:rw all:r;
    }
}

Tag summary

Content type

Image

Digest

Size

8.5 MB

Last updated

over 4 years ago

docker pull bxwill/webfs:nginx1.21-alpine-arm7