mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-14 21:03:10 +01:00
seafile: remove
This commit is contained in:
parent
f7e581f792
commit
3accb7c392
|
@ -12,7 +12,6 @@
|
||||||
./modules/matrix
|
./modules/matrix
|
||||||
./modules/mautrix-telegram
|
./modules/mautrix-telegram
|
||||||
./modules/monitoring
|
./modules/monitoring
|
||||||
./modules/seafile
|
|
||||||
./modules/torrent
|
./modules/torrent
|
||||||
./modules/vaultwarden
|
./modules/vaultwarden
|
||||||
./modules/caddy
|
./modules/caddy
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
let
|
|
||||||
domain = "seafile.${config.networking.domain}";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
services.seafile = {
|
|
||||||
enable = true;
|
|
||||||
adminEmail = "admin@rfive.de";
|
|
||||||
initialAdminPassword = "unused garbage";
|
|
||||||
ccnetSettings.General.SERVICE_URL = "https://${domain}";
|
|
||||||
ccnetSettings.General.FILE_SERVER_ROOT = "https://${domain}/seafhttp";
|
|
||||||
seafileSettings.fileserver.port = 8083;
|
|
||||||
seahubExtraConf = ''
|
|
||||||
ENABLE_OAUTH = True
|
|
||||||
OAUTH_ENABLE_INSECURE_TRANSPORT = True
|
|
||||||
|
|
||||||
OAUTH_CLIENT_ID = "seafile"
|
|
||||||
with open('/var/lib/seafile/.oidcSecret') as f:
|
|
||||||
OAUTH_CLIENT_SECRET = f.readline().rstrip()
|
|
||||||
OAUTH_REDIRECT_URL = 'https://seafile.rfive.de/oauth/callback/'
|
|
||||||
|
|
||||||
OAUTH_PROVIDER_DOMAIN = 'seafile.rfive.de'
|
|
||||||
OAUTH_AUTHORIZATION_URL = 'https://auth.rfive.de/application/o/authorize/'
|
|
||||||
OAUTH_TOKEN_URL = 'https://auth.rfive.de/application/o/token/'
|
|
||||||
OAUTH_USER_INFO_URL = 'https://auth.rfive.de/application/o/userinfo/'
|
|
||||||
OAUTH_SCOPE = [ "openid", "profile", "email"]
|
|
||||||
OAUTH_ATTRIBUTE_MAP = {
|
|
||||||
"id": (False, "not used"),
|
|
||||||
"name": (False, "full name"),
|
|
||||||
"email": (True, "email"),
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
|
||||||
redir /accounts/login /oauth/login
|
|
||||||
reverse_proxy unix//run/seahub/gunicorn.sock
|
|
||||||
route /media/* {
|
|
||||||
root * ${pkgs.seahub}
|
|
||||||
}
|
|
||||||
|
|
||||||
route /seafhttp/* {
|
|
||||||
uri strip_prefix /seafhttp
|
|
||||||
reverse_proxy 127.0.0.1:${toString config.services.seafile.seafileSettings.fileserver.port}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
}
|
|
|
@ -2,9 +2,6 @@ _final: prev:
|
||||||
let
|
let
|
||||||
inherit (prev) callPackage;
|
inherit (prev) callPackage;
|
||||||
inherit (prev) fetchFromGitHub;
|
inherit (prev) fetchFromGitHub;
|
||||||
inherit (prev) fetchPypi;
|
|
||||||
inherit (prev) makeWrapper;
|
|
||||||
inherit (prev) python3Packages;
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -36,80 +33,4 @@ in
|
||||||
gnome-break-timer = callPackage ../pkgs/gnome-break-timer { };
|
gnome-break-timer = callPackage ../pkgs/gnome-break-timer { };
|
||||||
jmri = callPackage ../pkgs/jmri { };
|
jmri = callPackage ../pkgs/jmri { };
|
||||||
adguardian-term = callPackage ../pkgs/adguardian-term { };
|
adguardian-term = callPackage ../pkgs/adguardian-term { };
|
||||||
|
|
||||||
# upstream package is broken and can't be fixed by overriding attrs. so I just completely redo it in here
|
|
||||||
seahub = (python3Packages.buildPythonApplication rec {
|
|
||||||
pname = "seahub";
|
|
||||||
version = "11.0.1";
|
|
||||||
format = "other";
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "haiwen";
|
|
||||||
repo = "seahub";
|
|
||||||
rev = "v11.0.1-pro";
|
|
||||||
sha256 = "sha256-dxMvbiAdECMZIf+HgA5P2gZYI9l+k+nhmdzfg90037A=";
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
dontBuild = true;
|
|
||||||
|
|
||||||
doCheck = false; # disabled because it requires a ccnet environment
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
makeWrapper
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
|
||||||
django
|
|
||||||
future
|
|
||||||
django-compressor
|
|
||||||
django-statici18n
|
|
||||||
django-webpack-loader
|
|
||||||
django-simple-captcha
|
|
||||||
django-picklefield
|
|
||||||
django-formtools
|
|
||||||
mysqlclient
|
|
||||||
pillow
|
|
||||||
python-dateutil
|
|
||||||
djangorestframework
|
|
||||||
openpyxl
|
|
||||||
requests
|
|
||||||
requests-oauthlib
|
|
||||||
chardet
|
|
||||||
pyjwt
|
|
||||||
pycryptodome
|
|
||||||
qrcode
|
|
||||||
pysearpc
|
|
||||||
seaserv
|
|
||||||
gunicorn
|
|
||||||
markdown
|
|
||||||
bleach
|
|
||||||
# python-ldap
|
|
||||||
pyopenssl
|
|
||||||
(buildPythonPackage rec {
|
|
||||||
pname = "djangosaml2";
|
|
||||||
version = "1.7.0";
|
|
||||||
doCheck = false;
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
pysaml2
|
|
||||||
django
|
|
||||||
defusedxml
|
|
||||||
];
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "sha256-WiMl2UvbOskLA5o5LXPrBF2VktlDnlBNdc42eZ62Fko=";
|
|
||||||
};
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
cp -dr --no-preserve='ownership' . $out/
|
|
||||||
wrapProgram $out/manage.py \
|
|
||||||
--prefix PYTHONPATH : "$PYTHONPATH:$out/thirdpart:"
|
|
||||||
'';
|
|
||||||
|
|
||||||
passthru = rec {
|
|
||||||
python = prev.python3;
|
|
||||||
pythonPath = python.pkgs.makePythonPath propagatedBuildInputs;
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
pcmanfm
|
pcmanfm
|
||||||
xdg-utils # used for xdg-open
|
xdg-utils # used for xdg-open
|
||||||
appimage-run
|
appimage-run
|
||||||
seafile-client
|
|
||||||
|
|
||||||
# graphics
|
# graphics
|
||||||
(zathura.override { plugins = [ zathuraPkgs.zathura_pdf_mupdf ]; })
|
(zathura.override { plugins = [ zathuraPkgs.zathura_pdf_mupdf ]; })
|
||||||
|
|
Loading…
Reference in a new issue