add mirror
This commit is contained in:
parent
326852c21f
commit
1310c4c7eb
3 changed files with 46 additions and 3 deletions
28
hosts/pluto/services/mirror.nix
Normal file
28
hosts/pluto/services/mirror.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
systemd.timers."mirror-update" = {
|
||||||
|
wantedBy = ["timers.target"];
|
||||||
|
timerConfig = {
|
||||||
|
OnBootSec = "5m";
|
||||||
|
OnUnitActiveSec = "5m";
|
||||||
|
Unit = "mirror-update.service";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services."mirror-update" = {
|
||||||
|
script = ''
|
||||||
|
${pkgs.rsync}/bin/rsync -vPa rsync://mirrors.lug.mtu.edu/archlinux/ /var/www/mirror.zackmyers.io/
|
||||||
|
'';
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
User = "root";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."mirror.zackmyers.io" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/archlinux" = {
|
||||||
|
root = "/var/www/mirror.zackmyers.io";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
8
hosts/pluto/services/nginx.nix
Normal file
8
hosts/pluto/services/nginx.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.nginxStable.override {openssl = pkgs.libressl;};
|
||||||
|
virtualHosts = {
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,12 +4,19 @@
|
||||||
package = pkgs.searxng;
|
package = pkgs.searxng;
|
||||||
runInUwsgi = true;
|
runInUwsgi = true;
|
||||||
settings = {
|
settings = {
|
||||||
# server.port = 8080;
|
|
||||||
# server.bind_addres = "0.0.0.0";
|
|
||||||
server.secret_key = "6f6bf40218f239718cacbc2cd837792be828e840b48ac72a8e0a9d0ddb9d0b00";
|
server.secret_key = "6f6bf40218f239718cacbc2cd837792be828e840b48ac72a8e0a9d0ddb9d0b00";
|
||||||
};
|
};
|
||||||
uwsgiConfig = {
|
uwsgiConfig = {
|
||||||
http = ":8080";
|
socket = "/run/searx/searx.sock";
|
||||||
|
chmod-socket = "660";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."search.zackmyers.io" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/searx" = {
|
||||||
|
uwsgiPass = "unix://run/searx/searx.sock";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue