mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-25 05:35:38 +00:00
add filebrowser app as nextcloud alternative
This commit is contained in:
parent
3b86a666fd
commit
25c4e79ccc
@ -240,6 +240,7 @@
|
|||||||
mail.smtpHost = "smtp.purelymail.com";
|
mail.smtpHost = "smtp.purelymail.com";
|
||||||
dotfilesRepo = "https://github.com/nmasur/dotfiles";
|
dotfilesRepo = "https://github.com/nmasur/dotfiles";
|
||||||
hostnames = {
|
hostnames = {
|
||||||
|
files = "files.${baseName}";
|
||||||
git = "git.${baseName}";
|
git = "git.${baseName}";
|
||||||
influxdb = "influxdb.${baseName}";
|
influxdb = "influxdb.${baseName}";
|
||||||
irc = "irc.${baseName}";
|
irc = "irc.${baseName}";
|
||||||
|
@ -97,6 +97,7 @@ inputs.nixpkgs.lib.nixosSystem rec {
|
|||||||
cloudflare.enable = true;
|
cloudflare.enable = true;
|
||||||
dotfiles.enable = true;
|
dotfiles.enable = true;
|
||||||
arrs.enable = true;
|
arrs.enable = true;
|
||||||
|
filebrowser.enable = true;
|
||||||
services.bind.enable = true;
|
services.bind.enable = true;
|
||||||
services.caddy.enable = true;
|
services.caddy.enable = true;
|
||||||
services.jellyfin.enable = true;
|
services.jellyfin.enable = true;
|
||||||
|
@ -77,6 +77,10 @@
|
|||||||
default = [ ];
|
default = [ ];
|
||||||
};
|
};
|
||||||
hostnames = {
|
hostnames = {
|
||||||
|
files = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Hostname for files server (Filebrowser).";
|
||||||
|
};
|
||||||
git = lib.mkOption {
|
git = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
description = "Hostname for git server (Gitea).";
|
description = "Hostname for git server (Gitea).";
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
./calibre.nix
|
./calibre.nix
|
||||||
./cloudflare-tunnel.nix
|
./cloudflare-tunnel.nix
|
||||||
./cloudflare.nix
|
./cloudflare.nix
|
||||||
|
./filebrowser.nix
|
||||||
./identity.nix
|
./identity.nix
|
||||||
./irc.nix
|
./irc.nix
|
||||||
./gitea-runner.nix
|
./gitea-runner.nix
|
||||||
|
74
modules/nixos/services/filebrowser.nix
Normal file
74
modules/nixos/services/filebrowser.nix
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
user =
|
||||||
|
if config.services.nextcloud.enable then
|
||||||
|
config.services.phpfpm.pools.nextcloud.user
|
||||||
|
else
|
||||||
|
"filebrowser";
|
||||||
|
|
||||||
|
dataDir = "/var/lib/filebrowser";
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
port = 8020;
|
||||||
|
baseURL = "";
|
||||||
|
address = "";
|
||||||
|
log = "stdout";
|
||||||
|
database = "${dataDir}/filebrowser.db";
|
||||||
|
root = "";
|
||||||
|
"auth.method" = "json";
|
||||||
|
username = config.user;
|
||||||
|
# Generate password: htpasswd -nBC 10 "" | tr -d ':\n'
|
||||||
|
password = "$2y$10$ze1cMob0k6pnXRjLowYfZOVZWg4G.dsPtH3TohbUeEbI0sdkG9.za";
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
options.filebrowser.enable = lib.mkEnableOption "Use Filebrowser.";
|
||||||
|
|
||||||
|
config = lib.mkIf config.filebrowser.enable {
|
||||||
|
|
||||||
|
environment.etc."filebrowser/.filebrowser.json".text = builtins.toJSON settings;
|
||||||
|
|
||||||
|
systemd.services.filebrowser = lib.mkIf config.filebrowser.enable {
|
||||||
|
description = "Filebrowser cloud file services";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
startLimitIntervalSec = 14400;
|
||||||
|
startLimitBurst = 10;
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = "${pkgs.filebrowser}/bin/filebrowser";
|
||||||
|
DynamicUser = !config.services.nextcloud.enable; # Unique user if not using Nextcloud
|
||||||
|
User = user;
|
||||||
|
Group = user;
|
||||||
|
ReadWritePaths = [ dataDir ];
|
||||||
|
StateDirectory = [ "filebrowser" ];
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartPreventExitStatus = 1;
|
||||||
|
RestartSec = "5s";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
caddy.routes = [
|
||||||
|
{
|
||||||
|
match = [ { host = [ config.hostnames.files ]; } ];
|
||||||
|
handle = [
|
||||||
|
{
|
||||||
|
handler = "reverse_proxy";
|
||||||
|
upstreams = [ { dial = "localhost:${builtins.toString settings.port}"; } ];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
# Configure Cloudflare DNS to point to this machine
|
||||||
|
services.cloudflare-dyndns.domains = [ config.hostnames.files ];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user