summaryrefslogtreecommitdiff
path: root/docs/examples/file_server.md
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-07-20 16:25:36 +0200
committerGitHub <noreply@github.com>2021-07-20 16:25:36 +0200
commitd744c0c6d9a557bbaa2a23571ffb3acabf19c35a (patch)
tree6f7fb8a71b786e79c48f4b2c11a5a9ca988717e8 /docs/examples/file_server.md
parent9b9becf1ae256b645e37a7eecf3441f3ae4b8ea5 (diff)
chore: move docs to separate repository
Diffstat (limited to 'docs/examples/file_server.md')
-rw-r--r--docs/examples/file_server.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/docs/examples/file_server.md b/docs/examples/file_server.md
deleted file mode 100644
index 57a6d710a..000000000
--- a/docs/examples/file_server.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# File server
-
-## Concepts
-
-- Use the Deno standard library
- [file_server.ts](https://deno.land/std@$STD_VERSION/http/file_server.ts) to
- run your own file server and access your files from your web browser.
-- Run [Deno install](../tools/script_installer.md) to install the file server
- locally.
-
-## Example
-
-Serve a local directory via HTTP. First install the remote script to your local
-file system. This will install the script to the Deno installation root's bin
-directory, e.g. `/home/alice/.deno/bin/file_server`.
-
-```shell
-deno install --allow-net --allow-read https://deno.land/std@$STD_VERSION/http/file_server.ts
-```
-
-You can now run the script with the simplified script name. Run it:
-
-```shell
-$ file_server .
-Downloading https://deno.land/std@$STD_VERSION/http/file_server.ts...
-[...]
-HTTP server listening on http://0.0.0.0:4507/
-```
-
-Now go to [http://0.0.0.0:4507/](http://0.0.0.0:4507/) in your web browser to
-see your local directory contents.
-
-## Help
-
-Help and a complete list of options are available via:
-
-```shell
-file_server --help
-```
-
-Example output:
-
-```
-Deno File Server
- Serves a local directory in HTTP.
-
- INSTALL:
- deno install --allow-net --allow-read https://deno.land/std/http/file_server.ts
-
- USAGE:
- file_server [path] [options]
-
- OPTIONS:
- -h, --help Prints help information
- -p, --port <PORT> Set port
- --cors Enable CORS via the "Access-Control-Allow-Origin" header
- --host <HOST> Hostname (default is 0.0.0.0)
- -c, --cert <FILE> TLS certificate file (enables TLS)
- -k, --key <FILE> TLS key file (enables TLS)
- --no-dir-listing Disable directory listing
-
- All TLS options are required when one is provided.
-```