Initial
This commit is contained in:
44
secrets.nix.example
Normal file
44
secrets.nix.example
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
pubkeys = [
|
||||
""
|
||||
];
|
||||
|
||||
peertube = {
|
||||
secret = "";
|
||||
db = {
|
||||
password = "";
|
||||
};
|
||||
auth = {
|
||||
url = "";
|
||||
secret = "";
|
||||
};
|
||||
ldap = {
|
||||
user = "";
|
||||
password = "";
|
||||
};
|
||||
admin = {
|
||||
email = "";
|
||||
};
|
||||
s3 = {
|
||||
id = "";
|
||||
key = "";
|
||||
};
|
||||
};
|
||||
|
||||
ipv4 = {
|
||||
addresses = [
|
||||
{ address = ""; prefixLength = 27; }
|
||||
];
|
||||
routes = [
|
||||
{ address = "0.0.0.0"; prefixLength = 0; via = ""; }
|
||||
];
|
||||
};
|
||||
ipv6 = {
|
||||
addresses = [
|
||||
{ address = ""; prefixLength = 64; }
|
||||
];
|
||||
routes = [
|
||||
{ address = "::"; prefixLength = 0; via = "fe80::1"; }
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user