zion/modules/webstack.nix

171 lines
5.9 KiB
Nix
Raw Normal View History

2020-08-24 15:07:55 +02:00
# Web services configuration
{ config, pkgs, lib, ... }: {
2019-11-10 23:40:31 +01:00
2021-01-19 00:14:57 +01:00
# Reverse proxy configuration
2019-11-10 23:40:31 +01:00
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
recommendedOptimisation = true;
clientMaxBodySize = "0";
2020-08-24 15:07:55 +02:00
sslCiphers =
"ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK:!AES128";
2019-11-10 23:40:31 +01:00
sslProtocols = "TLSv1.2 TLSv1.3";
2019-11-14 00:31:39 +01:00
sslDhparam = "/var/lib/dhparams/nginx.pem";
2019-11-10 23:40:31 +01:00
commonHttpConfig = ''
# Add HSTS header with preloading to HTTPS requests.
# Adding this header to HTTP requests is discouraged
map $scheme $hsts_header {
https "max-age=31536000; includeSubdomains; preload";
}
add_header Strict-Transport-Security $hsts_header;
# Minimize information leaked to other domains
add_header 'Referrer-Policy' 'origin-when-cross-origin';
2021-07-20 15:58:06 +02:00
# Disable embedding as a frame, except from the same origin
add_header Content-Security-Policy "frame-src git.coolneng.duckdns.org; frame-ancestors git.coolneng.duckdns.org";
2019-11-10 23:40:31 +01:00
# Prevent injection of code in other mime types (XSS Attacks)
add_header X-Content-Type-Options nosniff;
# This might create errors
proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
'';
virtualHosts = {
"coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
2021-02-03 03:56:59 +01:00
# Redirect from legacy subdirectory URL to subdomain
locations = {
"/radicale/".return = "301 https://radicale.coolneng.duckdns.org";
"/syncthing/".return = "301 https://sync.coolneng.duckdns.org";
"/gitea/".extraConfig =
2020-08-24 15:07:55 +02:00
"rewrite ^/gitea/(.*)$ https://git.coolneng.duckdns.org/$1 last;";
2021-02-03 03:56:59 +01:00
"/miniflux/".extraConfig =
2020-08-24 15:07:55 +02:00
"rewrite ^/miniflux/(.*)$ https://rss.coolneng.duckdns.org/$1 last;";
2019-11-17 23:25:54 +01:00
};
2020-08-24 15:07:55 +02:00
};
"radicale.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:5232/";
extraConfig = ''
proxy_set_header X-Script-Name /;
proxy_pass_header Authorization;
'';
2019-11-17 18:58:31 +01:00
};
2019-11-10 23:40:31 +01:00
};
2020-08-24 15:07:55 +02:00
"sync.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
2021-02-03 03:56:59 +01:00
locations."/".proxyPass = "http://localhost:8384/";
2020-08-24 15:07:55 +02:00
};
"git.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
2021-02-03 03:56:59 +01:00
locations."/".proxyPass = "http://localhost:3000/";
2020-08-24 15:07:55 +02:00
};
"rss.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
2021-02-03 03:56:59 +01:00
locations."/".proxyPass = "http://localhost:8080/";
2020-08-24 15:07:55 +02:00
};
2020-12-28 18:42:26 +01:00
"matrix.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
listen = [
{
addr = "0.0.0.0";
port = 8448;
ssl = true;
}
{
addr = "0.0.0.0";
port = 443;
ssl = true;
}
];
locations."/".proxyPass = "http://localhost:8008/";
2020-12-28 18:42:26 +01:00
};
"element.coolneng.duckdns.org" = {
enableACME = true;
forceSSL = true;
2021-02-03 03:56:59 +01:00
locations."/".root = pkgs.element-web.override {
conf.default_server_config."m.homeserver" = {
"base_url" = "https://matrix.coolneng.duckdns.org";
"server_name" = "coolneng.duckdns.org";
2020-12-28 18:42:26 +01:00
};
};
};
2021-01-19 00:14:57 +01:00
"wallabag.coolneng.duckdns.org" = {
2021-02-03 05:28:10 +01:00
enableACME = true;
forceSSL = true;
2021-01-19 00:14:57 +01:00
root = "${pkgs.wallabag}/web";
2021-02-03 05:28:10 +01:00
locations = {
"/".tryFiles = "$uri /app.php$is_args$args";
"/assets".root = "${config.environment.variables.WALLABAG_DATA}/web";
"~ ^/app.php(/|$)" = {
fastcgiParams = {
SCRIPT_FILENAME = "${pkgs.wallabag}/web/$fastcgi_script_name";
DOCUMENT_ROOT = "${pkgs.wallabag}/web";
};
extraConfig = ''
fastcgi_pass unix:${config.services.phpfpm.pools.wallabag.socket};
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include ${pkgs.nginx}/conf/fastcgi_params;
internal;
'';
};
2021-01-19 00:14:57 +01:00
};
};
2019-11-10 23:40:31 +01:00
};
};
# ACME certs configuration
security.acme = {
acceptTerms = true;
defaults.email = "akasroua@gmail.com";
certs."coolneng.duckdns.org".extraDomainNames = [
"radicale.coolneng.duckdns.org"
"sync.coolneng.duckdns.org"
"git.coolneng.duckdns.org"
"rss.coolneng.duckdns.org"
"matrix.coolneng.duckdns.org"
"element.coolneng.duckdns.org"
"wallabag.coolneng.duckdns.org"
];
2019-11-10 23:40:31 +01:00
};
2019-11-14 02:30:12 +01:00
# Generate dhparams
2019-11-14 00:31:39 +01:00
security.dhparams = {
enable = true;
params.nginx.bits = 2048;
2019-11-14 00:31:39 +01:00
};
2019-11-10 23:40:31 +01:00
2019-11-17 18:58:31 +01:00
# PostgreSQL databases configuration
2019-11-16 10:55:10 +01:00
services.postgresql = {
enable = true;
package = pkgs.postgresql_11;
2019-11-16 10:55:10 +01:00
authentication = lib.mkForce ''
2020-08-24 15:07:55 +02:00
# Generated file; do not edit!
# TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
2019-11-16 10:55:10 +01:00
'';
};
2019-11-14 02:30:12 +01:00
2020-04-17 00:47:17 +02:00
# Restart reverse proxy after services startup
2020-08-24 15:07:55 +02:00
systemd.services.nginx.after = [
"gitea.service"
"syncthing.service"
"miniflux.service"
"radicale.service"
2020-12-28 18:42:26 +01:00
"matrix-synapse.service"
2021-01-19 00:14:57 +01:00
"phpfpm-wallabag.service"
2020-08-24 15:07:55 +02:00
];
2019-11-10 23:40:31 +01:00
}