ldap working for now

master
root 2020-09-13 16:59:19 +00:00
parent 54a1135f3b
commit 58dd7a02d1
2 changed files with 26 additions and 24 deletions

View File

@ -11,6 +11,7 @@
./nextcloud.nix
./matrix-synapse.nix
./nginx.nix
./openldap.nix
];
# Boot
@ -37,13 +38,6 @@
security.acme.email = "webmaster@bib3.de";
security.acme.acceptTerms = true;
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# };
# Set your time zone.
time.timeZone = "UTC";
@ -62,22 +56,6 @@
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
services.nginx = {
enable = true;
# only recommendedProxySettings and recommendedGzipSettings are strictly required,
# but the rest make sense as well
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
"default_server" = {
root = "/var/www/default";
};
};
};
# Define a user account. Don't forget to set a password with passwd.
users.users.loooph = {
isNormalUser = true;
@ -100,7 +78,7 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget vim git htop tmux openssl
wget vim git htop tmux openssl fd
];
}

24
openldap.nix Normal file
View File

@ -0,0 +1,24 @@
{config, pkgs, ...}:
{
services.openldap = {
enable = true;
dataDir = "/var/lib/openldap";
rootpwFile = "/etc/nixos/secret/openldaproot.pw";
suffix = "o=bib3,c=DE";
rootdn = "cn=admin,o=bib3,c=DE";
declarativeContents = ''
dn: o=bib3, c=DE
objectclass: organization
dn: ou=users, o=bib3, c=DE
objectclass: organizationalUnit
ou: users
dn: cn=test, ou=users, o=bib3, c=DE
objectclass: person
cn: test
sn: test
'';
};
}