2024-10-11 10:23:21 +00:00
|
|
|
<template>
|
2024-10-15 08:29:50 +00:00
|
|
|
<pre>
|
|
|
|
networking.extraHosts = ''
|
2024-10-11 10:23:21 +00:00
|
|
|
127.0.0.1 peertube.local
|
|
|
|
'';
|
|
|
|
|
|
|
|
environment.etc = {
|
|
|
|
"peertube/password-posgressql-db".text = "test123";
|
|
|
|
"peertube/password-redis-db".text = "test123";
|
|
|
|
};
|
|
|
|
|
|
|
|
services = {
|
|
|
|
|
|
|
|
peertube = {
|
|
|
|
enable = true;
|
|
|
|
localDomain = "peertube.local";
|
|
|
|
enableWebHttps = false;
|
|
|
|
database = {
|
|
|
|
host = "127.0.0.1";
|
|
|
|
name = "peertube_local";
|
|
|
|
user = "peertube_test";
|
|
|
|
passwordFile = "/etc/peertube/password-posgressql-db";
|
|
|
|
};
|
|
|
|
redis = {
|
|
|
|
host = "127.0.0.1";
|
|
|
|
port = 31638;
|
|
|
|
passwordFile = "/etc/peertube/password-redis-db";
|
|
|
|
};
|
|
|
|
settings = {
|
|
|
|
listen.hostname = "0.0.0.0";
|
|
|
|
instance.name = "PeerTube Test Server";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
postgresql = {
|
|
|
|
enable = true;
|
|
|
|
enableTCPIP = true;
|
|
|
|
authentication = ''
|
|
|
|
hostnossl peertube_local peertube_test 127.0.0.1/32 md5
|
|
|
|
'';
|
|
|
|
initialScript = pkgs.writeText "postgresql_init.sql" ''
|
|
|
|
CREATE ROLE peertube_test LOGIN PASSWORD 'test123';
|
|
|
|
CREATE DATABASE peertube_local TEMPLATE template0 ENCODING UTF8;
|
|
|
|
GRANT ALL PRIVILEGES ON DATABASE peertube_local TO peertube_test;
|
|
|
|
ALTER DATABASE peertube_local OWNER TO peertube_test;
|
|
|
|
\connect peertube_local
|
|
|
|
CREATE EXTENSION IF NOT EXISTS pg_trgm;
|
|
|
|
CREATE EXTENSION IF NOT EXISTS unaccent;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
redis.servers.peertube = {
|
|
|
|
enable = true;
|
|
|
|
bind = "0.0.0.0";
|
|
|
|
requirePass = "test123";
|
|
|
|
port = 31638;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2024-10-15 08:29:50 +00:00
|
|
|
</pre>
|
2024-10-11 10:23:21 +00:00
|
|
|
</template>
|
|
|
|
|