https://github.com/j-f-liu/right-back
A simple standalone web server to be used when your website is during maintenance.
https://github.com/j-f-liu/right-back
Last synced: 3 months ago
JSON representation
A simple standalone web server to be used when your website is during maintenance.
- Host: GitHub
- URL: https://github.com/j-f-liu/right-back
- Owner: J-F-Liu
- License: mit
- Created: 2016-12-07T02:21:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-06T16:03:46.000Z (about 8 years ago)
- Last Synced: 2024-12-28T19:29:41.505Z (5 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# right-back
A simple standalone web server to be used when your website is during maintenance.## Run code
```
pacman -S rustup
rustup install nightly
rustup default nightly
cargo run
```## Build and run docker image
```
alias rust-musl-builder='docker run --rm -it -v "$(pwd)":/home/rust/src ekidd/rust-musl-builder:nightly'
rust-musl-builder cargo build --release
docker build -t right-back .
docker run -p 80:80 right-back
```