3 unstable releases
0.2.1 | Apr 3, 2022 |
---|---|
0.2.0 | Mar 20, 2022 |
0.1.1 | Feb 16, 2022 |
#90 in #links
52 downloads per month
46KB
602 lines
Simple URL shortener
A very simple URL shortener, which is easy to configure and quite speedy. Later it is planned to add some analytics.
If you have any issues you can contact me on discord, valkyrie_pilot#2707
, or via email valk@vky.one
You can edit links at /simpleshortener/ on the domain you use to host it.
Install
Create this config file:
# Port to run SimpleShortener on. Can be overridden with the `PORT` environment variable.
port = 24529
# Where to keep files
database = "/etc/simpleshortener/links.bincode"
# A key:value list of username:sha256-hashed passwords
users = { admin = "fc8252c8dc55839967c58b9ad755a59b61b67c13227ddae4bd3f78a38bf394f7" }
# Uncomment to enable TLS
# This also requires the TLS-enabled binary:
# if the default binary is downloaded, TLS is entirely ignored
# [tls]
# port = 443
# certfile = "/path/to/cert.pem"
# keyfile = "/path/to/key.pem"
then run with ./target/bin/simpleshortener /path/to/config.toml
Building
You can build from source with rust
Without TLS support
git clone https://github.com/randomairborne/SimpleShortener.git
cargo build --release
With TLS support
git clone https://github.com/randomairborne/SimpleShortener.git
cargo build --release --features tls
Dependencies
~13–27MB
~412K SLoC