diff options
| author | Lena <lena@omega> | 2026-07-01 00:00:00 +0000 |
|---|---|---|
| committer | Lena <lena@omega> | 2026-07-01 00:00:00 +0000 |
| commit | 6aca57a7cdcc2cd0e431146e61f3321100638baa (patch) | |
| tree | b4aaaa5528adf8127a9a7d805cbe722ebbdb86e9 /.gitignore | |
| download | xf-6aca57a7cdcc2cd0e431146e61f3321100638baa.tar.gz | |
Serve a directory tree over HTTP through one embedded page: a listing
with download links and a multi-file upload form.
Filesystem access is confined to the served root with os.Root, and
only regular files are served. Uploads are bounded by size and part
count, and every file is staged in the target directory before any is
renamed into place, so a refused or interrupted request leaves the
directory untouched.
Standard library only, no third-party dependencies.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c89afc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/xf |