Add website service
This commit is contained in:
parent
8fe36b187b
commit
9010db4f75
4 changed files with 48 additions and 0 deletions
etc/nixos/services
45
etc/nixos/services/tlaternet.nix
Normal file
45
etc/nixos/services/tlaternet.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
tlaternet = import ../derivations/tlaternet { inherit pkgs; };
|
||||
tlaternet-templates = import ../derivations/tlaternet-templates { inherit pkgs; };
|
||||
|
||||
in
|
||||
{
|
||||
networked-docker-containers = {
|
||||
web = {
|
||||
image = "tlaternet/web";
|
||||
imageFile = pkgs.dockerTools.buildImage {
|
||||
name = "tlaternet/web";
|
||||
tag = "latest";
|
||||
contents = tlaternet;
|
||||
config = {
|
||||
Cmd = [ "${tlaternet}/bin/tlaternet" ];
|
||||
Volumes = {
|
||||
"/srv/mail" = {};
|
||||
};
|
||||
Env = [
|
||||
"ROCKET_PORT=80"
|
||||
"ROCKET_TEMPLATE_DIR=${tlaternet-templates}/srv/web"
|
||||
];
|
||||
ExposedPorts = {
|
||||
"80" = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
volumes = [
|
||||
"mail:/srv/mail"
|
||||
];
|
||||
environment = {
|
||||
VIRTUAL_HOST = "tlater.net,www.tlater.net";
|
||||
LETSENCRYPT_HOST = "tlater.net,www.tlater.net";
|
||||
};
|
||||
networks = [
|
||||
"webproxy"
|
||||
];
|
||||
extraDockerOptions = [
|
||||
"--domainname=tlater.net"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue