Change settings for new git server
This commit is contained in:
parent
70a82db612
commit
8f228ed357
|
@ -5,7 +5,6 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
../shared/shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
../shared/services/mopidy.nix
|
|
||||||
./eno-hardware.nix
|
./eno-hardware.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
../shared/shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
./kernighan-hardware.nix
|
./kernighan-hardware.nix
|
||||||
../shared/services/syncthing.nix
|
../shared/services/syncthing.nix
|
||||||
#./services/git.nix
|
../shared/services/git.nix
|
||||||
../shared/services/nginx.nix
|
../shared/services/nginx.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ in
|
||||||
../shared/desktop.nix
|
../shared/desktop.nix
|
||||||
./ritchie-hardware.nix
|
./ritchie-hardware.nix
|
||||||
../shared/filesystem.nix
|
../shared/filesystem.nix
|
||||||
../shared/services/mopidy.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
|
|
@ -16,6 +16,13 @@
|
||||||
proxyPass = "http://127.0.0.1:8384";
|
proxyPass = "http://127.0.0.1:8384";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
virtualHosts."git.tsvallender.co.uk" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8384";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
security.acme = {
|
security.acme = {
|
||||||
acceptTerms = true;
|
acceptTerms = true;
|
||||||
|
|
|
@ -14,7 +14,7 @@ Host kernighan
|
||||||
Host git.tsvallender.co.uk
|
Host git.tsvallender.co.uk
|
||||||
HostName git.tsvallender.co.uk
|
HostName git.tsvallender.co.uk
|
||||||
IdentityFile /home/tsv/.ssh/personal
|
IdentityFile /home/tsv/.ssh/personal
|
||||||
Port 222
|
Port 2222
|
||||||
User tsv
|
User tsv
|
||||||
IdentitiesOnly yes
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue