mirror of
https://github.com/hercules-ci/arion.git
synced 2024-12-02 02:38:07 +03:00
17 lines
633 B
Nix
17 lines
633 B
Nix
{
|
|
services.webserver = { pkgs, lib, ... }: {
|
|
nixos.useSystemd = true;
|
|
nixos.configuration.boot.tmpOnTmpfs = true;
|
|
nixos.configuration.services.nginx.enable = true;
|
|
nixos.configuration.services.nginx.virtualHosts.localhost.root = "${pkgs.nix.doc}/share/doc/nix/manual";
|
|
nixos.configuration.services.nscd.enable = false;
|
|
nixos.configuration.system.nssModules = lib.mkForce [];
|
|
nixos.configuration.systemd.services.nginx.serviceConfig.AmbientCapabilities =
|
|
lib.mkForce [ "CAP_NET_BIND_SERVICE" ];
|
|
service.useHostStore = true;
|
|
service.ports = [
|
|
"8000:80" # host:container
|
|
];
|
|
};
|
|
}
|