VEGAS: remove forum service
This commit is contained in:
parent
e74131af48
commit
5f1ebf2cc7
5 changed files with 0 additions and 55 deletions
|
@ -1,40 +0,0 @@
|
||||||
{ config, pkgs, tools, ... }:
|
|
||||||
{
|
|
||||||
age.secrets = {
|
|
||||||
discourse-adminpass = {
|
|
||||||
file = ../../../../secrets/discourse-adminpass.age;
|
|
||||||
owner = "discourse";
|
|
||||||
group = "discourse";
|
|
||||||
mode = "0400";
|
|
||||||
};
|
|
||||||
discourse-dbpass = {
|
|
||||||
file = ../../../../secrets/discourse-dbpass.age;
|
|
||||||
owner = "discourse";
|
|
||||||
group = "discourse";
|
|
||||||
mode = "0400";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
services.discourse = {
|
|
||||||
enable = true;
|
|
||||||
nginx.enable = true;
|
|
||||||
hostname = "forum.${tools.meta.domain}";
|
|
||||||
|
|
||||||
plugins = with pkgs.discourse.plugins; [
|
|
||||||
discourse-ldap-auth
|
|
||||||
];
|
|
||||||
|
|
||||||
admin = {
|
|
||||||
email = tools.meta.adminEmail;
|
|
||||||
fullName = "Site Administrator";
|
|
||||||
username = "admin";
|
|
||||||
passwordFile = config.age.secrets.discourse-adminpass.path;
|
|
||||||
};
|
|
||||||
|
|
||||||
database = {
|
|
||||||
host = "127.0.0.1";
|
|
||||||
name = "forum";
|
|
||||||
username = "forum";
|
|
||||||
passwordFile = config.age.secrets.discourse-dbpass.path;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -22,8 +22,6 @@
|
||||||
./services/dns
|
./services/dns
|
||||||
./services/fbi
|
./services/fbi
|
||||||
./services/bitwarden
|
./services/bitwarden
|
||||||
# TODO: fix this one
|
|
||||||
./services/forum
|
|
||||||
./services/git
|
./services/git
|
||||||
./services/hydra
|
./services/hydra
|
||||||
./services/hyprspace
|
./services/hyprspace
|
||||||
|
|
Binary file not shown.
|
@ -1,11 +0,0 @@
|
||||||
age-encryption.org/v1
|
|
||||||
-> ssh-ed25519 NO562A LVOiO6inEu8YgF8XpQJLdzDZucyXAJKKhxjuESzLxkI
|
|
||||||
5mebe46wDnPo/UMLT+BuHaWfp3HqVnupUVIcrmzMNaA
|
|
||||||
-> ssh-ed25519 5/zT0w vLu5e4HVp2e/+TspW2fpJ7wyxCs6RQecSYSmw3wtgWs
|
|
||||||
hcpegcBG49EEpy1QkXas8UUEewMenkdq2GGO7dYZPMI
|
|
||||||
-> ssh-ed25519 d3WGuA UIdaI0MtMEDdYCuEfdIXyOYxUcsonpn+ALgjzdPbIhA
|
|
||||||
17bJ/fOe8tjnrwpugeao0H8IY11yQSPGpLUTgHdfnZM
|
|
||||||
-> W/-grease v|B#s- h -
|
|
||||||
f1XUdGctidk+XumqgfMjZWoHKA
|
|
||||||
--- 7VyP3m2uXCyxIXXchR5z2ubkqLmuX9sUmzD8wcsoofU
|
|
||||||
Q{E…h“_àmD…¾³ð…yî"Ξ¦°#ú¸›0ž7ÈøŒÄ"û†˜
|
|
|
@ -6,8 +6,6 @@ in with hosts;
|
||||||
{
|
{
|
||||||
"acme-dns-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
"acme-dns-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
||||||
"coturn-static-auth.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
"coturn-static-auth.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
||||||
"discourse-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
||||||
"discourse-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
||||||
"gitea-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
"gitea-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
||||||
"hydra-bincache.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
"hydra-bincache.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
||||||
"hydra-builder-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
"hydra-builder-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
||||||
|
|
Loading…
Reference in a new issue