1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/updog.md

26 lines
653 B
Markdown
Raw Normal View History

2021-08-18 01:38:32 +05:30
# updog
> A replacement for Python's SimpleHTTPServer.
> It allows uploading and downloading via HTTP/S, can set ad hoc SSL certificates and use HTTP basic auth.
> More information: <https://github.com/sc0tfree/updog>.
- Start a HTTP server for the current directory:
`updog`
- Start a HTTP server for a specified directory:
`updog --directory {{/path/to/directory}}`
- Start a HTTP server on a specified port:
`updog --port {{port}}`
- Start a HTTP server with a password (To log in, leave the username blank and enter the password in the password field):
`updog --password {{password}}`
2022-03-27 07:25:15 +02:00
- Enable transport encryption via SSL:
2021-08-18 01:38:32 +05:30
`updog --ssl`