ma 1 gum: host update.connector.one
This commit is contained in:
parent
461fe008e7
commit
40b13f2408
@ -15,6 +15,7 @@ in {
|
|||||||
../2configs/git/cgit-retiolum.nix
|
../2configs/git/cgit-retiolum.nix
|
||||||
../2configs/mattermost-docker.nix
|
../2configs/mattermost-docker.nix
|
||||||
../2configs/nginx/euer.test.nix
|
../2configs/nginx/euer.test.nix
|
||||||
|
../2configs/nginx/update.connector.one.nix
|
||||||
|
|
||||||
../2configs/exim-retiolum.nix
|
../2configs/exim-retiolum.nix
|
||||||
../2configs/urlwatch.nix
|
../2configs/urlwatch.nix
|
||||||
|
26
makefu/2configs/nginx/update.connector.one.nix
Normal file
26
makefu/2configs/nginx/update.connector.one.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
hostname = config.krebs.build.host.name;
|
||||||
|
external-ip = head config.krebs.build.host.nets.internet.addrs4;
|
||||||
|
in {
|
||||||
|
krebs.nginx = {
|
||||||
|
enable = mkDefault true;
|
||||||
|
servers = {
|
||||||
|
omo-share = {
|
||||||
|
listen = [ "${external-ip}:80" ];
|
||||||
|
server-names = [
|
||||||
|
"update.connector.one"
|
||||||
|
"firmware.connector.one"
|
||||||
|
];
|
||||||
|
locations = singleton (nameValuePair "/" ''
|
||||||
|
autoindex on;
|
||||||
|
root /var/www/update.connector.one;
|
||||||
|
sendfile on;
|
||||||
|
gzip on;
|
||||||
|
'');
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user