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
|
2022-03-06 01:43:10 +01:00
|
|
|
- Created in response to actix/actix-web#1315
|
2022-02-06 09:13:24 +01:00
|
|
|
1. sending a SIGINT signal to the server (control-c)
|
2022-03-06 01:43:10 +01:00
|
|
|
- actix-server natively supports SIGINT
|
2020-01-26 00:49:19 +01:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Running The Server
|
|
|
|
|
2022-02-18 04:36:04 +01:00
|
|
|
```sh
|
2022-03-05 15:28:43 +01:00
|
|
|
cd 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)
|
2022-03-06 01:43:10 +01:00
|
|
|
- Regular hello world route
|
2020-01-26 00:49:19 +01:00
|
|
|
- [POST /stop](http://localhost:8080/stop)
|
2022-03-06 01:43:10 +01:00
|
|
|
- Calling this will shutdown the server and exit
|