1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00
actix-website/content/docs/server.md

121 lines
6.8 KiB
Markdown
Raw Normal View History

2018-05-22 23:15:08 +02:00
---
title: Server
menu: docs_basics
weight: 150
---
# The HTTP Server
2020-09-12 17:21:54 +02:00
The [**HttpServer**][httpserverstruct] type is responsible for serving HTTP requests.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
`HttpServer` accepts an application factory as a parameter, and the application factory must have `Send` + `Sync` boundaries. More about that in the _multi-threading_ section.
2018-05-22 23:15:08 +02:00
2022-02-26 06:01:13 +01:00
To bind to a specific socket address, [`bind()`][bindmethod] must be used, and it may be called multiple times. To bind ssl socket, [`bind_rustls()`][bindrusttls] or [`bind_openssl()`][bindopensslmethod] should be used. To run the HTTP server, use the `HttpServer::run()` method.
2018-05-22 23:15:08 +02:00
2018-05-24 05:39:15 +02:00
{{< include-example example="server" section="main" >}}
2018-05-22 23:15:08 +02:00
2022-02-26 06:01:13 +01:00
The `run()` method returns an instance of the [`Server`][server] type. A `Server` must be `await`ed or `spawn`ed to start processing requests. It will complete when it receives a shutdown signal; Actix Web listens for system process signals by default.
2018-05-22 23:15:08 +02:00
2022-02-26 06:22:21 +01:00
The following example shows how to start the HTTP server in a Tokio task with manual commands and shutdown using a server handle.
2018-05-22 23:15:08 +02:00
2018-05-24 05:39:15 +02:00
{{< include-example example="server" file="signals.rs" section="signals" >}}
2018-05-22 23:15:08 +02:00
2022-02-26 06:01:13 +01:00
## Multi-Threading
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
`HttpServer` automatically starts a number of HTTP _workers_, by default this number is equal to the number of logical CPUs in the system. This number can be overridden with the [`HttpServer::workers()`][workers] method.
2018-05-22 23:15:08 +02:00
2018-05-24 05:39:15 +02:00
{{< include-example example="server" file="workers.rs" section="workers" >}}
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Once the workers are created, they each receive a separate _application_ instance to handle requests. Application state is not shared between the threads, and handlers are free to manipulate their copy of the state with no concurrency concerns.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> Application state does not need to be `Send` or `Sync`, but application factories must be `Send` + `Sync`.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
To share state between worker threads, use an `Arc`. Special care should be taken once sharing and synchronization are introduced. In many cases, performance costs are inadvertently introduced as a result of locking the shared state for modifications.
2022-02-26 05:41:49 +01:00
In some cases these costs can be alleviated using more efficient locking strategies, for example using [read/write locks](https://doc.rust-lang.org/std/sync/struct.RwLock.html) instead of [mutexes](https://doc.rust-lang.org/std/sync/struct.Mutex.html) to achieve non-exclusive locking, but the most performant implementations often tend to be ones in which no locking occurs at all.
2022-02-26 05:41:49 +01:00
Since each worker thread processes its requests sequentially, handlers which block the current thread will cause the current worker to stop processing new requests:
```rust
fn my_handler() -> impl Responder {
std::thread::sleep(Duration::from_secs(5)); // <-- Bad practice! Will cause the current worker thread to hang!
"response"
}
```
2020-03-17 15:41:27 +01:00
2022-02-26 05:41:49 +01:00
For this reason, any long, non-cpu-bound operation (e.g. I/O, database operations, etc.) should be expressed as futures or asynchronous functions. Async handlers get executed concurrently by worker threads and thus don't block execution:
```rust
async fn my_handler() -> impl Responder {
tokio::time::delay_for(Duration::from_secs(5)).await; // <-- Ok. Worker thread will handle other requests here
"response"
}
```
2022-02-26 05:41:49 +01:00
The same limitation applies to extractors as well. When a handler function receives an argument which implements `FromRequest`, and that implementation blocks the current thread, the worker thread will block when running the handler. Special attention must be given when implementing extractors for this very reason, and they should also be implemented asynchronously where needed.
2022-02-26 06:22:21 +01:00
## TLS / HTTPS
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
There are two features for the ssl server: `rustls` and `openssl`. The `rustls` feature is for `rustls` integration and `openssl` is for `openssl`.
2018-05-22 23:15:08 +02:00
```toml
[dependencies]
2020-01-02 07:56:32 +01:00
actix-web = { version = "{{< actix-version "actix-web" >}}", features = ["openssl"] }
2020-12-26 19:34:17 +01:00
openssl = { version = "0.10" }
2018-05-22 23:15:08 +02:00
```
2018-05-24 05:39:15 +02:00
{{< include-example example="server" file="ssl.rs" section="ssl" >}}
2018-05-22 23:15:08 +02:00
To create the key.pem and cert.pem use the command. **Fill in your own subject**
2022-02-26 05:41:49 +01:00
2018-05-22 23:15:08 +02:00
```bash
$ openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem \
-days 365 -sha256 -subj "/C=CN/ST=Fujian/L=Xiamen/O=TVlinux/OU=Org/CN=muro.lxd"
```
2022-02-26 05:41:49 +01:00
To remove the password, then copy nopass.pem to key.pem
2022-02-26 05:41:49 +01:00
2018-05-22 23:15:08 +02:00
```bash
$ openssl rsa -in key.pem -out nopass.pem
```
## Keep-Alive
2022-02-26 06:22:21 +01:00
Actix Web keeps connections open to wait for subsequent requests.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> _keep alive_ connection behavior is defined by server settings.
2018-05-22 23:15:08 +02:00
2022-02-26 06:22:21 +01:00
- `Duration::from_secs(75)` or `KeepAlive::Timeout(75)`: enables 75 second keep-alive timer.
- `KeepAlive::Os`: uses OS keep-alive.
- `None` or `KeepAlive::Disabled`: disables keep-alive.
2018-05-22 23:15:08 +02:00
2019-06-13 23:10:51 +02:00
{{< include-example example="server" file="keep_alive.rs" section="keep-alive" >}}
2018-05-22 23:15:08 +02:00
If the first option above is selected, then keep-alive is enabled for HTTP/1.1 requests if the response does not explicitly disallow it by, for example, setting the [connection type][httpconnectiontype] to `Close` or `Upgrade`. Force closing a connection can be done with [the `force_close()` method on `HttpResponseBuilder`](https://docs.rs/actix-web/3/actix_web/dev/struct.HttpResponseBuilder.html#method.force_close)
2018-05-22 23:15:08 +02:00
2022-02-26 06:22:21 +01:00
> Keep-alive is **off** for HTTP/1.0 and is **on** for HTTP/1.1 and HTTP/2.0.
2018-05-22 23:15:08 +02:00
## Graceful shutdown
2022-02-26 05:41:49 +01:00
`HttpServer` supports graceful shutdown. After receiving a stop signal, workers have a specific amount of time to finish serving requests. Any workers still alive after the timeout are force-dropped. By default the shutdown timeout is set to 30 seconds. You can change this parameter with the [`HttpServer::shutdown_timeout()`][shutdowntimeout] method.
2018-05-22 23:15:08 +02:00
2022-02-26 06:22:21 +01:00
`HttpServer` handles several OS signals. _CTRL-C_ is available on all OSes, other signals are available on unix systems.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
- _SIGINT_ - Force shutdown workers
- _SIGTERM_ - Graceful shutdown workers
- _SIGQUIT_ - Force shutdown workers
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> It is possible to disable signal handling with [`HttpServer::disable_signals()`][disablesignals] method.
2020-09-12 17:21:54 +02:00
[server]: https://docs.rs/actix-web/3/actix_web/dev/struct.Server.html
[httpserverstruct]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html
[bindmethod]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.bind
[bindopensslmethod]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.bind_openssl
[bindrusttls]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.bind_rustls
[workers]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.workers
[tlsalpn]: https://tools.ietf.org/html/rfc7301
2021-02-26 19:48:27 +01:00
[exampleopenssl]: https://github.com/actix/examples/tree/master/security/openssl
2020-09-12 17:21:54 +02:00
[shutdowntimeout]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.shutdown_timeout
[disablesignals]: https://docs.rs/actix-web/3/actix_web/struct.HttpServer.html#method.disable_signals
[httpconnectiontype]: https://docs.rs/actix-web/3/actix_web/http/enum.ConnectionType.html