This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/carbon/services/privacy/binternet.nix

31 lines
795 B
Nix

{ pkgs, config, ... }: {
virtualisation.oci-containers.containers = {
binternet = {
image = "ghcr.io/ahwxorg/binternet:latest";
ports = [
"7382:80"
];
};
};
services.nginx = {
virtualHosts = {
"binternet.${config.networking.domain}" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = " http://127.0.0.1:7382";
extraConfig = ''
rewrite ^/www.pinterest.com$ http://binternet.${config.networking.domain}/ permanent;
rewrite ^/pinterest.com$ http://binternet.${config.networking.domain}/ permanent;
'';
# ^^^ libreddirect for some reason forgets to delete the pinterest domain
# fixing this bug
};
};
};
};
}