Compare commits
No commits in common. "c5659ecc4eab8cabba3e6781f0e81f270678d0ce" and "e29de0d29c90adef438c3c404c9301defd9450ec" have entirely different histories.
c5659ecc4e
...
e29de0d29c
78
README.md
78
README.md
@ -7,78 +7,6 @@ their DNS server.
|
||||
|
||||
[Demo which may or may not be live](https://domiply.mediocregopher.com)
|
||||
|
||||
## Build
|
||||
|
||||
Domiply uses nix flakes for building and setting up the development environment.
|
||||
|
||||
In order to create a release binary:
|
||||
|
||||
```
|
||||
nix build
|
||||
```
|
||||
|
||||
A statically compiled binary will be placed in the `result` directory.
|
||||
|
||||
## Configuration
|
||||
|
||||
Domiply is configured via command-line arguments or environment variables:
|
||||
|
||||
```
|
||||
--http-domain <HTTP_DOMAIN>
|
||||
[env: DOMIPLY_HTTP_DOMAIN=]
|
||||
|
||||
--http-listen-addr <HTTP_LISTEN_ADDR>
|
||||
[env: DOMIPLY_HTTP_LISTEN_ADDR=] [default: [::]:3030]
|
||||
|
||||
--https-listen-addr <HTTPS_LISTEN_ADDR>
|
||||
E.g. '[::]:443', if given then SSL certs will automatically be retrieved for all domains using LetsEncrypt [env: DOMIPLY_HTTPS_LISTEN_ADDR=]
|
||||
|
||||
--passphrase <PASSPHRASE>
|
||||
[env: DOMIPLY_PASSPHRASE=]
|
||||
|
||||
--origin-store-git-dir-path <ORIGIN_STORE_GIT_DIR_PATH>
|
||||
[env: DOMIPLY_ORIGIN_STORE_GIT_DIR_PATH=]
|
||||
|
||||
--domain-checker-target-a <DOMAIN_CHECKER_TARGET_A>
|
||||
[env: DOMIPLY_DOMAIN_CHECKER_TARGET_A=]
|
||||
|
||||
--domain-checker-resolver-addr <DOMAIN_CHECKER_RESOLVER_ADDR>
|
||||
[env: DOMIPLY_DOMAIN_CHECKER_RESOLVER_ADDR=] [default: 1.1.1.1:53]
|
||||
|
||||
--domain-config-store-dir-path <DOMAIN_CONFIG_STORE_DIR_PATH>
|
||||
[env: DOMIPLY_DOMAIN_CONFIG_STORE_DIR_PATH=]
|
||||
|
||||
--domain-acme-store-dir-path <DOMAIN_ACME_STORE_DIR_PATH>
|
||||
[env: DOMIPLY_DOMAIN_ACME_STORE_DIR_PATH=]
|
||||
|
||||
--domain-acme-contact-email <DOMAIN_ACME_CONTACT_EMAIL>
|
||||
[env: DOMIPLY_DOMAIN_ACME_CONTACT_EMAIL=]
|
||||
|
||||
-h, --help
|
||||
Print help
|
||||
|
||||
-V, --version
|
||||
Print version
|
||||
```
|
||||
|
||||
### HTTPS Support
|
||||
|
||||
Domiply will automatically handle setting up HTTPS via LetsEncrypt for both the
|
||||
domiply frontend site and all domains which it has been configured to serve.
|
||||
|
||||
By default HTTPS is not enabled, but can be easily enabled by setting the
|
||||
following arguments:
|
||||
|
||||
```
|
||||
--https-listen-addr='[::]:443'
|
||||
--domain-acme-contact-email='foo@example.com'
|
||||
--domain-acme-store-dir-path='/some/secure/directory'
|
||||
```
|
||||
|
||||
The contact email can be anything, it doesn't have to be real. The store
|
||||
directory will have all SSL private keys written to it, and so should be
|
||||
secured as best as possible.
|
||||
|
||||
## Development
|
||||
|
||||
Domiply uses nix flakes for building and setting up the development environment.
|
||||
@ -91,6 +19,12 @@ nix develop
|
||||
|
||||
Within the shell which opens you can do `cargo run` to start a local instance.
|
||||
|
||||
In order to create a release binary:
|
||||
|
||||
```
|
||||
nix build
|
||||
```
|
||||
|
||||
## Roadmap
|
||||
|
||||
Check out the `src/service/http_tpl/index.html` file for the current roadmap.
|
||||
|
1
TODO
1
TODO
@ -1,4 +1,3 @@
|
||||
- logging
|
||||
- expect statements (pretend it's "expected", not "expect")
|
||||
- map_unexpected annotation string
|
||||
- clean up main a lot
|
||||
|
@ -34,7 +34,7 @@ impl TryFrom<&Certificate> for openssl::x509::X509 {
|
||||
type Error = openssl::error::ErrorStack;
|
||||
|
||||
fn try_from(c: &Certificate) -> Result<Self, Self::Error> {
|
||||
openssl::x509::X509::from_der(&c.0)
|
||||
Ok(openssl::x509::X509::from_der(&c.0)?)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@ use crate::domain::{self, acme};
|
||||
use crate::error;
|
||||
use crate::error::{MapUnexpected, ToUnexpected};
|
||||
|
||||
const LETS_ENCRYPT_URL: &str = "https://acme-v02.api.letsencrypt.org/directory";
|
||||
const LETS_ENCRYPT_URL: &'static str = "https://acme-v02.api.letsencrypt.org/directory";
|
||||
|
||||
pub type GetHttp01ChallengeKeyError = acme::store::GetHttp01ChallengeKeyError;
|
||||
|
||||
@ -149,7 +149,7 @@ where
|
||||
|
||||
// no matter what the result is, clean up the challenge key
|
||||
self.store
|
||||
.del_http01_challenge_key(challenge_token)
|
||||
.del_http01_challenge_key(&challenge_token)
|
||||
.map_unexpected()?;
|
||||
|
||||
let challenge = challenge_res.map_unexpected()?;
|
||||
|
@ -9,7 +9,6 @@ use serde_with::{DeserializeFromStr, SerializeDisplay};
|
||||
pub struct PrivateKey(Vec<u8>);
|
||||
|
||||
impl PrivateKey {
|
||||
#[allow(clippy::new_without_default)]
|
||||
pub fn new() -> PrivateKey {
|
||||
acme2::gen_rsa_private_key(4096)
|
||||
.expect("RSA private key generated")
|
||||
@ -45,7 +44,7 @@ impl TryFrom<&PrivateKey> for openssl::pkey::PKey<openssl::pkey::Private> {
|
||||
type Error = openssl::error::ErrorStack;
|
||||
|
||||
fn try_from(k: &PrivateKey) -> Result<Self, Self::Error> {
|
||||
openssl::pkey::PKey::private_key_from_der(&k.0)
|
||||
Ok(openssl::pkey::PKey::private_key_from_der(&k.0)?)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ impl Store for BoxedFSStore {
|
||||
) -> Result<(), error::Unexpected> {
|
||||
let to_store = StoredPKeyCert {
|
||||
private_key: key,
|
||||
cert,
|
||||
cert: cert,
|
||||
};
|
||||
|
||||
let cert_file = fs::File::create(self.certificate_path(domain)).map_unexpected()?;
|
||||
@ -194,7 +194,11 @@ impl rustls::server::ResolvesServerCert for BoxedFSStore {
|
||||
&self,
|
||||
client_hello: rustls::server::ClientHello<'_>,
|
||||
) -> Option<sync::Arc<rustls::sign::CertifiedKey>> {
|
||||
let domain = client_hello.server_name()?;
|
||||
let domain = if let Some(domain) = client_hello.server_name() {
|
||||
domain
|
||||
} else {
|
||||
return None;
|
||||
};
|
||||
|
||||
match self.get_certificate(domain) {
|
||||
Err(GetCertificateError::NotFound) => Ok(None),
|
||||
@ -204,7 +208,7 @@ impl rustls::server::ResolvesServerCert for BoxedFSStore {
|
||||
Err(err) => Err(err),
|
||||
Ok(key) => Ok(Some(sync::Arc::new(rustls::sign::CertifiedKey {
|
||||
cert: cert.into_iter().map(|cert| cert.into()).collect(),
|
||||
key,
|
||||
key: key,
|
||||
ocsp: None,
|
||||
sct_list: None,
|
||||
}))),
|
||||
|
@ -105,7 +105,7 @@ impl Store for sync::Arc<FSStore> {
|
||||
error::Unexpected::from("couldn't convert os string to &str")
|
||||
})?;
|
||||
|
||||
domain::Name::from_str(domain).map_unexpected()
|
||||
Ok(domain::Name::from_str(domain).map_unexpected()?)
|
||||
},
|
||||
)
|
||||
.collect())
|
||||
|
@ -188,7 +188,7 @@ where
|
||||
origin_store,
|
||||
domain_config_store,
|
||||
domain_checker,
|
||||
acme_manager,
|
||||
acme_manager: acme_manager,
|
||||
})
|
||||
}
|
||||
|
||||
@ -261,7 +261,7 @@ where
|
||||
|
||||
Ok(Box::from(iter.filter_map(|descr| {
|
||||
if let Err(err) = descr {
|
||||
return Some((None, err.to_unexpected()));
|
||||
return Some((None, err.to_unexpected().into()));
|
||||
}
|
||||
|
||||
let descr = descr.unwrap();
|
||||
@ -270,7 +270,7 @@ where
|
||||
.origin_store
|
||||
.sync(descr.clone(), origin::store::Limits {})
|
||||
{
|
||||
return Some((Some(descr), err.to_unexpected()));
|
||||
return Some((Some(descr), err.to_unexpected().into()));
|
||||
}
|
||||
|
||||
None
|
||||
|
70
src/main.rs
70
src/main.rs
@ -30,8 +30,7 @@ struct Cli {
|
||||
long,
|
||||
help = "E.g. '[::]:443', if given then SSL certs will automatically be retrieved for all domains using LetsEncrypt",
|
||||
env = "DOMIPLY_HTTPS_LISTEN_ADDR",
|
||||
requires = "domain_acme_contact_email",
|
||||
requires = "domain_acme_store_dir_path"
|
||||
requires = "domain_acme_contact_email"
|
||||
)]
|
||||
https_listen_addr: Option<SocketAddr>,
|
||||
|
||||
@ -50,24 +49,13 @@ struct Cli {
|
||||
#[arg(long, required = true, env = "DOMIPLY_DOMAIN_CONFIG_STORE_DIR_PATH")]
|
||||
domain_config_store_dir_path: path::PathBuf,
|
||||
|
||||
#[arg(long, env = "DOMIPLY_DOMAIN_ACME_STORE_DIR_PATH")]
|
||||
domain_acme_store_dir_path: Option<path::PathBuf>,
|
||||
#[arg(long, required = true, env = "DOMIPLY_DOMAIN_ACME_STORE_DIR_PATH")]
|
||||
domain_acme_store_dir_path: path::PathBuf,
|
||||
|
||||
#[arg(long, env = "DOMIPLY_DOMAIN_ACME_CONTACT_EMAIL")]
|
||||
domain_acme_contact_email: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
struct HTTPSParams<DomainAcmeStore, DomainAcmeManager>
|
||||
where
|
||||
DomainAcmeStore: domiply::domain::acme::store::BoxedStore,
|
||||
DomainAcmeManager: domiply::domain::acme::manager::BoxedManager,
|
||||
{
|
||||
https_listen_addr: SocketAddr,
|
||||
domain_acme_store: DomainAcmeStore,
|
||||
domain_acme_manager: DomainAcmeManager,
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
let config = Cli::parse();
|
||||
@ -107,11 +95,10 @@ async fn main() {
|
||||
let domain_config_store = domiply::domain::config::new(&config.domain_config_store_dir_path)
|
||||
.expect("domain config store initialized");
|
||||
|
||||
let https_params = if let Some(https_listen_addr) = config.https_listen_addr {
|
||||
let domain_acme_store_dir_path = config.domain_acme_store_dir_path.unwrap();
|
||||
|
||||
let domain_acme_store = domiply::domain::acme::store::new(&domain_acme_store_dir_path)
|
||||
.expect("domain acme store initialized");
|
||||
let (domain_acme_store, domain_acme_manager) = if config.https_listen_addr.is_some() {
|
||||
let domain_acme_store =
|
||||
domiply::domain::acme::store::new(&config.domain_acme_store_dir_path)
|
||||
.expect("domain acme store initialized");
|
||||
|
||||
// if https_listen_addr is set then domain_acme_contact_email is required, see the Cli/clap
|
||||
// settings.
|
||||
@ -124,26 +111,20 @@ async fn main() {
|
||||
.await
|
||||
.expect("domain acme manager initialized");
|
||||
|
||||
Some(HTTPSParams {
|
||||
https_listen_addr,
|
||||
domain_acme_store,
|
||||
domain_acme_manager,
|
||||
})
|
||||
(Some(domain_acme_store), Some(domain_acme_manager))
|
||||
} else {
|
||||
None
|
||||
(None, None)
|
||||
};
|
||||
|
||||
let domain_manager = domiply::domain::manager::new(
|
||||
let manager = domiply::domain::manager::new(
|
||||
origin_store,
|
||||
domain_config_store,
|
||||
domain_checker,
|
||||
https_params
|
||||
.as_ref()
|
||||
.and_then(|p| Some(p.domain_acme_manager.clone())),
|
||||
domain_acme_manager.clone(),
|
||||
);
|
||||
|
||||
wait_group.push({
|
||||
let domain_manager = domain_manager.clone();
|
||||
let manager = manager.clone();
|
||||
let canceller = canceller.clone();
|
||||
|
||||
tokio::spawn(async move {
|
||||
@ -155,7 +136,7 @@ async fn main() {
|
||||
_ = canceller.cancelled() => return,
|
||||
}
|
||||
|
||||
let errors_iter = domain_manager.sync_all_origins();
|
||||
let errors_iter = manager.sync_all_origins();
|
||||
|
||||
if let Err(err) = errors_iter {
|
||||
println!("Got error calling sync_all_origins: {err}");
|
||||
@ -174,7 +155,7 @@ async fn main() {
|
||||
});
|
||||
|
||||
let service = domiply::service::new(
|
||||
domain_manager.clone(),
|
||||
manager.clone(),
|
||||
config.domain_checker_target_a,
|
||||
config.passphrase,
|
||||
config.http_domain.clone(),
|
||||
@ -219,11 +200,13 @@ async fn main() {
|
||||
})
|
||||
});
|
||||
|
||||
if let Some(https_params) = https_params {
|
||||
// if there's an acme manager then it means that https is enabled
|
||||
if let (Some(domain_acme_store), Some(domain_acme_manager)) =
|
||||
(domain_acme_store, domain_acme_manager)
|
||||
{
|
||||
// Periodically refresh all domain certs, including the http_domain passed in the Cli opts
|
||||
wait_group.push({
|
||||
let https_params = https_params.clone();
|
||||
let domain_manager = domain_manager.clone();
|
||||
let manager = manager.clone();
|
||||
let http_domain = config.http_domain.clone();
|
||||
let canceller = canceller.clone();
|
||||
|
||||
@ -236,8 +219,7 @@ async fn main() {
|
||||
_ = canceller.cancelled() => return,
|
||||
}
|
||||
|
||||
_ = https_params
|
||||
.domain_acme_manager
|
||||
_ = domain_acme_manager
|
||||
.sync_domain(http_domain.clone())
|
||||
.await
|
||||
.inspect_err(|err| {
|
||||
@ -247,7 +229,7 @@ async fn main() {
|
||||
)
|
||||
});
|
||||
|
||||
let domains_iter = domain_manager.all_domains();
|
||||
let domains_iter = manager.all_domains();
|
||||
|
||||
if let Err(err) = domains_iter {
|
||||
println!("Got error calling all_domains: {err}");
|
||||
@ -257,8 +239,7 @@ async fn main() {
|
||||
for domain in domains_iter.unwrap().into_iter() {
|
||||
match domain {
|
||||
Ok(domain) => {
|
||||
let _ = https_params
|
||||
.domain_acme_manager
|
||||
let _ = domain_acme_manager
|
||||
.sync_domain(domain.clone())
|
||||
.await
|
||||
.inspect_err(|err| {
|
||||
@ -277,7 +258,6 @@ async fn main() {
|
||||
|
||||
// HTTPS server
|
||||
wait_group.push({
|
||||
let https_params = https_params.clone();
|
||||
let http_domain = config.http_domain.clone();
|
||||
let canceller = canceller.clone();
|
||||
let service = service.clone();
|
||||
@ -303,11 +283,11 @@ async fn main() {
|
||||
.with_safe_default_protocol_versions()
|
||||
.unwrap()
|
||||
.with_no_client_auth()
|
||||
.with_cert_resolver(sync::Arc::from(https_params.domain_acme_store)),
|
||||
.with_cert_resolver(sync::Arc::from(domain_acme_store)),
|
||||
)
|
||||
.into();
|
||||
|
||||
let addr = https_params.https_listen_addr;
|
||||
let addr = config.https_listen_addr.unwrap();
|
||||
let addr_incoming = hyper::server::conn::AddrIncoming::bind(&addr)
|
||||
.expect("https listen socket created");
|
||||
|
||||
@ -332,7 +312,7 @@ async fn main() {
|
||||
})
|
||||
}
|
||||
|
||||
while wait_group.next().await.is_some() {}
|
||||
while let Some(_) = wait_group.next().await {}
|
||||
|
||||
println!("Graceful shutdown complete");
|
||||
}
|
||||
|
@ -48,6 +48,7 @@ planned but not yet implemented:</p>
|
||||
|
||||
<ul>
|
||||
<li>Support for AAAA and CNAME records</li>
|
||||
<li>HTTPS support, with automatic certificate syncing via Let's Encrypt.</li>
|
||||
<li>
|
||||
Support for more backends than just git repositories, including:
|
||||
<ul>
|
||||
|
Loading…
Reference in New Issue
Block a user