Blog engine written in rust.
bash
cargo install rblog
git clone https://github.com/prabirshrestha/rblog.git
cargo run
cargo install systemfd
systemfd --no-pid -s http::8080 -- cargo watch -x 'run'
Make sure to set the proxy_http_version 1.1
if using nginx proxy.
location / {
proxy_http_version 1.1;
.....
}
MIT