feat: add terraforming of authentik
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
This commit is contained in:
@@ -5,6 +5,7 @@ in
|
||||
{
|
||||
my-lxc.auth = {
|
||||
container = {
|
||||
enable = true;
|
||||
cores = 2;
|
||||
memory = 1024;
|
||||
disk = "8G";
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
{ ... }:
|
||||
let
|
||||
db_pass = import ../config/_passwords.nix;
|
||||
in
|
||||
{
|
||||
my-lxc.papers = {
|
||||
container = {
|
||||
cores = 1;
|
||||
memory = 512;
|
||||
disk = "6G";
|
||||
swap = 512;
|
||||
};
|
||||
db = {
|
||||
enable = true;
|
||||
password = db_pass.papers;
|
||||
};
|
||||
system = {
|
||||
port = 80; # open in firewall + expose on proxy
|
||||
importConfig = [
|
||||
../config/papers-paperless.nix
|
||||
];
|
||||
};
|
||||
logging = {
|
||||
enable = true;
|
||||
metricsEnable = true;
|
||||
};
|
||||
private = true; # available only on private lan
|
||||
auth = false; # true; # auth overlay
|
||||
};
|
||||
}
|
||||
@@ -7,7 +7,7 @@ in
|
||||
container = {
|
||||
cores = 1;
|
||||
memory = 512;
|
||||
disk = "4G";
|
||||
disk = "5G";
|
||||
swap = 512;
|
||||
};
|
||||
db = {
|
||||
|
||||
Reference in New Issue
Block a user