Désactivation Organizr
This commit is contained in:
parent
840fca4b9c
commit
e8c6fd7535
@ -1,5 +0,0 @@
|
|||||||
self: super:
|
|
||||||
|
|
||||||
{
|
|
||||||
organizr = super.callPackage ../pkgs/organizr { };
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
{ stdenv, fetchFromGitHub }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "organizr-${version}";
|
|
||||||
version = "1.75";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "causefx";
|
|
||||||
repo = "Organizr";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "13h6cgqq3gyg5d3ikj7k85igpg6al7y9xdsxammkr8y5dzfbkm36";
|
|
||||||
};
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/
|
|
||||||
cp -R . $out/
|
|
||||||
ln -s /var/lib/organizr/config.php $out/config/config.php
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Organizr dashboard";
|
|
||||||
homepage = https://github.com/causefx/Organizr;
|
|
||||||
license = stdenv.lib.licenses.gpl3;
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
@ -39,7 +39,6 @@
|
|||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(import ../../overlays/riot-web.nix)
|
(import ../../overlays/riot-web.nix)
|
||||||
(import ../../overlays/lidarr.nix)
|
(import ../../overlays/lidarr.nix)
|
||||||
(import ../../overlays/organizr.nix)
|
|
||||||
(import ../../overlays/sudo.nix)
|
(import ../../overlays/sudo.nix)
|
||||||
(import ../../overlays/neovim.nix)
|
(import ../../overlays/neovim.nix)
|
||||||
(import ../../overlays/site-max.nix)
|
(import ../../overlays/site-max.nix)
|
||||||
|
@ -6,7 +6,6 @@ let
|
|||||||
domaine = "nyanlout.re";
|
domaine = "nyanlout.re";
|
||||||
|
|
||||||
riot_port = 52345;
|
riot_port = 52345;
|
||||||
organizr_port = 52346;
|
|
||||||
pgmanage_port = 52347;
|
pgmanage_port = 52347;
|
||||||
max_port = 52348;
|
max_port = 52348;
|
||||||
musique_port = 52349;
|
musique_port = 52349;
|
||||||
@ -48,7 +47,6 @@ in
|
|||||||
"searx.${domaine}" = { ip = "127.0.0.1"; port = 8888; auth = false; };
|
"searx.${domaine}" = { ip = "127.0.0.1"; port = 8888; auth = false; };
|
||||||
"riot.${domaine}" = { ip = "127.0.0.1"; port = riot_port; auth = false; };
|
"riot.${domaine}" = { ip = "127.0.0.1"; port = riot_port; auth = false; };
|
||||||
"matrix.${domaine}" = { ip = "127.0.0.1"; port = 8008; auth = false; };
|
"matrix.${domaine}" = { ip = "127.0.0.1"; port = 8008; auth = false; };
|
||||||
"organizr.${domaine}" = { ip = "127.0.0.1"; port = organizr_port; auth = true; };
|
|
||||||
"pgmanage.${domaine}" = { ip = "127.0.0.1"; port = pgmanage_port; auth = true; };
|
"pgmanage.${domaine}" = { ip = "127.0.0.1"; port = pgmanage_port; auth = true; };
|
||||||
"gitea.${domaine}" = { ip = "127.0.0.1"; port = 3001; auth = false; };
|
"gitea.${domaine}" = { ip = "127.0.0.1"; port = 3001; auth = false; };
|
||||||
};
|
};
|
||||||
@ -140,40 +138,8 @@ in
|
|||||||
listen = [ { addr = "127.0.0.1"; port = riot_port; } ];
|
listen = [ { addr = "127.0.0.1"; port = riot_port; } ];
|
||||||
locations = { "/" = { root = pkgs.riot-web; }; };
|
locations = { "/" = { root = pkgs.riot-web; }; };
|
||||||
};
|
};
|
||||||
"organizr" = {
|
|
||||||
listen = [ { addr = "127.0.0.1"; port = organizr_port; } ];
|
|
||||||
locations."/" = {
|
|
||||||
root = pkgs.organizr;
|
|
||||||
index = "index.php";
|
|
||||||
extraConfig = ''
|
|
||||||
location ~* \.php$ {
|
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
||||||
fastcgi_pass unix:/run/phpfpm/nginx;
|
|
||||||
include ${pkgs.nginx}/conf/fastcgi_params;
|
|
||||||
include ${pkgs.nginx}/conf/fastcgi.conf;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.phpfpm.poolConfigs.mypool = ''
|
|
||||||
listen = /run/phpfpm/nginx
|
|
||||||
listen.owner = nginx
|
|
||||||
listen.group = nginx
|
|
||||||
listen.mode = 0660
|
|
||||||
user = nginx
|
|
||||||
pm = dynamic
|
|
||||||
pm.max_children = 75
|
|
||||||
pm.start_servers = 2
|
|
||||||
pm.min_spare_servers = 1
|
|
||||||
pm.max_spare_servers = 20
|
|
||||||
pm.max_requests = 500
|
|
||||||
php_admin_value[error_log] = 'stderr'
|
|
||||||
php_admin_flag[log_errors] = on
|
|
||||||
catch_workers_output = yes
|
|
||||||
'';
|
|
||||||
|
|
||||||
services.postgresql.enable = true;
|
services.postgresql.enable = true;
|
||||||
services.matrix-synapse = {
|
services.matrix-synapse = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user