1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

push: go trough proxy

This commit is contained in:
Robin Appelman 2023-02-23 14:36:33 +01:00
commit 48843efe1a
2 changed files with 6 additions and 5 deletions

View file

@ -2,7 +2,6 @@ use crate::service::ServiceTrait;
use crate::{Cloud, HazeConfig};
use crate::{Result, Service};
use bollard::Docker;
use hyper::http::uri::Builder;
use miette::{miette, IntoDiagnostic};
use std::collections::HashMap;
use std::convert::Infallible;
@ -18,9 +17,8 @@ use tokio::spawn;
use tokio::time::sleep;
use tokio_stream::wrappers::UnixListenerStream;
use tracing::info;
use warp::host::Authority;
use warp::http::header::HOST;
use warp::http::{HeaderValue, Uri};
use warp::http::HeaderValue;
use warp::hyper::server::accept::from_stream;
use warp::hyper::server::conn::AddrStream;
use warp::hyper::service::{make_service_fn, service_fn};