actix-web/actix-http
Dhinesh K c885158718 feat(awc): add HTTP proxy support via environment variables
Add support for HTTP_PROXY/HTTPS_PROXY/NO_PROXY environment variables
to the awc HTTP client, matching the behavior of reqwest and other
HTTP clients. Proxied requests use absolute-form URIs per RFC 7230
section 5.3.2.

Changes:
- actix-http: Add PROXY_REQUEST flag and absolute-form URI encoding
- awc: Add ProxyConfig, ClientBuilder::proxy()/no_proxy() methods
- awc: DefaultConnector routes connections through proxy when configured
- Proxy env vars are read by default; use no_proxy() to disable
2026-06-18 21:05:44 +05:30
..
benches chore: upgrade `criterion` to 0.8 (#4045) 2026-04-25 20:08:11 +09:00
examples fix(*): replace rustls-pemfile (#3855) 2025-12-12 08:11:24 +09:00
src feat(awc): add HTTP proxy support via environment variables 2026-06-18 21:05:44 +05:30
tests chore: upgrade rand to 0.10.1 (#4021) 2026-04-15 06:20:52 +00:00
CHANGES.md feat(awc): add HTTP proxy support via environment variables 2026-06-18 21:05:44 +05:30
Cargo.toml chore: upgrade `criterion` to 0.8 (#4045) 2026-04-25 20:08:11 +09:00
LICENSE-APACHE prepare release beta 4 (#1659) 2020-09-09 22:14:11 +01:00
LICENSE-MIT prepare release beta 4 (#1659) 2020-09-09 22:14:11 +01:00
README.md chore(http): release v3.12.0 (#3939) 2026-02-18 19:10:18 +09:00

README.md

actix-http

HTTP types and services for the Actix ecosystem.

crates.io Documentation Version MIT or Apache 2.0 licensed
dependency status Download Chat on Discord

Examples

use std::{env, io};

use actix_http::{HttpService, Response};
use actix_server::Server;
use futures_util::future;
use http::header::HeaderValue;
use tracing::info;

#[actix_rt::main]
async fn main() -> io::Result<()> {
    env::set_var("RUST_LOG", "hello_world=info");
    env_logger::init();

    Server::build()
        .bind("hello-world", "127.0.0.1:8080", || {
            HttpService::build()
                .client_timeout(1000)
                .client_disconnect(1000)
                .finish(|_req| {
                    info!("{:?}", _req);
                    let mut res = Response::Ok();
                    res.header("x-head", HeaderValue::from_static("dummy value!"));
                    future::ok::<_, ()>(res.body("Hello world!"))
                })
                .tcp()
        })?
        .run()
        .await
}