mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:26:51 +01:00
108 lines
2.5 KiB
Nix
108 lines
2.5 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedTlsSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedProxySettings = true;
|
|
virtualHosts = {
|
|
"missing.ninja" = {
|
|
serverAliases = [
|
|
"joens.zone"
|
|
"joens.website"
|
|
"joens.site"
|
|
"joens.online"
|
|
"joens.link"
|
|
"joens.international"
|
|
"joens.family"
|
|
"joens.digital"
|
|
"joens.blog"
|
|
"net0loggy.net"
|
|
#"clan-war.net"
|
|
"net0loggy.de"
|
|
"dtg-c.de"
|
|
];
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
};
|
|
"webmail.missing.ninja" = {
|
|
serverAliases = [ "joens.email" ];
|
|
};
|
|
"pad.missing.ninja" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://localhost:3333";
|
|
locations."/socket.io/" = {
|
|
proxyPass = "http://localhost:3333";
|
|
proxyWebsockets = true;
|
|
extraConfig = "proxy_ssl_server_name on;";
|
|
};
|
|
};
|
|
"test.missing.ninja" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
};
|
|
"search.missing.ninja" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://localhost:8080";
|
|
};
|
|
"cache.missing.ninja" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://${config.services.nix-serve.bindAddress}:${toString config.services.nix-serve.port}";
|
|
};
|
|
"hetzner" = {
|
|
forceSSL = false;
|
|
enableACME = false;
|
|
locations."/".proxyPass = "http://127.0.0.1:1242";
|
|
};
|
|
};
|
|
};
|
|
|
|
services.hedgedoc = {
|
|
enable = true;
|
|
settings = {
|
|
db = {
|
|
dialect = "sqlite";
|
|
torage = "/var/lib/hedgedoc/db.hedgedoc.sqlite";
|
|
};
|
|
domain = "pad.missing.ninja";
|
|
port = 3333;
|
|
useSSL = false;
|
|
protocolUseSSL = true;
|
|
};
|
|
};
|
|
|
|
services.nix-serve = {
|
|
enable = true;
|
|
secretKeyFile = "/var/cache-priv-key.pem";
|
|
};
|
|
|
|
services.wordpress.webserver = "nginx";
|
|
services.phpfpm.phpOptions = ''
|
|
post_max_size = "64M"
|
|
upload_max_filesize = "64M"
|
|
max_execution_time = 300
|
|
max_input_time = 300
|
|
'';
|
|
|
|
services.searx = {
|
|
enable = true;
|
|
runInUwsgi = false;
|
|
settings = {
|
|
server.secret_key = "NotASecret";
|
|
};
|
|
uwsgiConfig = {
|
|
socket = "/run/searx/searx.sock";
|
|
chmod-socket = "660";
|
|
};
|
|
};
|
|
}
|