Adding miniflux to kernighan
This commit is contained in:
parent
74a3b26906
commit
1cb4dd1813
|
@ -8,6 +8,7 @@
|
|||
./kernighan-hardware.nix
|
||||
../shared/services/syncthing.nix
|
||||
../shared/services/gitweb.nix
|
||||
../shared/services/miniflux.nix
|
||||
../shared/services/nginx.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
services.miniflux = {
|
||||
enable = true;
|
||||
adminCredentialsFile = "/home/tsv/.miniflux_admin_credentials";
|
||||
};
|
||||
}
|
||||
|
|
@ -4,15 +4,20 @@
|
|||
services.nginx = {
|
||||
enable = true;
|
||||
|
||||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
recommendedProxySettings = true;
|
||||
recommendedTlsSettings = true;
|
||||
|
||||
gitweb = {
|
||||
enable = true;
|
||||
virtualHost = "git.tsvallender.co.uk";
|
||||
location = "/home/tsv/git";
|
||||
};
|
||||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
recommendedProxySettings = true;
|
||||
recommendedTlsSettings = true;
|
||||
virtualHosts."git.tsvallender.co.uk" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
};
|
||||
|
||||
virtualHosts."syncthing.tsvallender.co.uk" = {
|
||||
forceSSL = true;
|
||||
|
@ -21,11 +26,16 @@
|
|||
proxyPass = "http://127.0.0.1:8384";
|
||||
};
|
||||
};
|
||||
virtualHosts."git.tsvallender.co.uk" = {
|
||||
|
||||
virtualHosts."feeds.tsvallender.co.uk" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8080";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
defaults = {
|
||||
|
|
Loading…
Reference in New Issue