2020-01-31 13:10:56 +01:00
|
|
|
# shutdown-server
|
2020-01-26 00:49:19 +01:00
|
|
|
|
2020-01-31 13:10:56 +01:00
|
|
|
Demonstrates how to shutdown the web server in a couple of ways:
|
|
|
|
|
|
|
|
1. remotely, via http request
|
|
|
|
- Created in response to actix/actix-web#1315
|
|
|
|
|
|
|
|
2. sending a SIGINT signal to the server (control-c)
|
2020-02-12 13:53:01 +01:00
|
|
|
- actix-server natively supports SIGINT
|
2020-01-26 00:49:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Running The Server
|
|
|
|
|
|
|
|
```bash
|
2021-10-06 23:28:53 +02:00
|
|
|
cd basics/shutdown-server
|
2020-01-31 13:10:56 +01:00
|
|
|
cargo run --bin shutdown-server
|
2020-01-26 00:49:19 +01:00
|
|
|
|
|
|
|
# Starting 8 workers
|
|
|
|
# Starting "actix-web-service-127.0.0.1:8080" service on 127.0.0.1:8080
|
|
|
|
```
|
|
|
|
|
|
|
|
### Available Routes
|
|
|
|
|
|
|
|
- [GET /hello](http://localhost:8080/hello)
|
|
|
|
- Regular hello world route
|
|
|
|
- [POST /stop](http://localhost:8080/stop)
|
|
|
|
- Calling this will shutdown the server and exit
|