2017-05-10 14:47:58 +00:00
|
|
|
{config,lib,pkgs, ...}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
pwfile = (toString <secrets>)+ "/vnc-password"; # create with `vncpasswd`
|
|
|
|
pwtmp = "/tmp/vnc-password";
|
2017-05-12 09:35:35 +00:00
|
|
|
user = config.makefu.gui.user;
|
|
|
|
vnc_port = 5900;
|
|
|
|
web_port = 6080;
|
2017-05-10 14:47:58 +00:00
|
|
|
in {
|
2017-05-12 09:35:35 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [ 80 vnc_port web_port ];
|
|
|
|
systemd.services = {
|
2017-07-16 19:54:06 +00:00
|
|
|
# TODO: terminal-server without a real gui and virtual display manager
|
2017-05-12 09:35:35 +00:00
|
|
|
terminal-server = {
|
|
|
|
description = "VNC Terminal Server";
|
|
|
|
after = [ "display-manager.service" "graphical.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
User = user;
|
|
|
|
Restart = "always";
|
|
|
|
ExecStartPre = pkgs.writeDash "terminal-pre" ''
|
|
|
|
sleep 5
|
|
|
|
install -m0700 -o ${user} ${pwfile} ${pwtmp}
|
|
|
|
'';
|
2017-07-16 19:54:06 +00:00
|
|
|
ExecStart = "${pkgs.tigervnc}/bin/x0vncserver -display :0 -rfbport ${toString vnc_port} -passwordfile ${pwtmp}";
|
2017-05-12 09:35:35 +00:00
|
|
|
PermissionsStartOnly = true;
|
|
|
|
PrivateTmp = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
terminal-web = {
|
|
|
|
description = "noVNC Web Server";
|
|
|
|
after = [ "terminal-server.service" "graphical.target" "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
User = "nobody";
|
|
|
|
ExecStart = "${pkgs.novnc}/bin/launch-novnc.sh --listen ${toString web_port} --vnc localhost:${toString vnc_port}";
|
2017-09-07 19:51:24 +00:00
|
|
|
PrivateTmp = true;
|
2017-05-12 09:35:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services.nginx.enable = true;
|
|
|
|
services.nginx.virtualHosts._.locations = {
|
|
|
|
"/" = {
|
|
|
|
root = "${pkgs.novnc}";
|
|
|
|
index = "vnc_auto.html";
|
|
|
|
};
|
|
|
|
"/websockify" = {
|
|
|
|
proxyPass = "http://127.0.0.1:6080/";
|
|
|
|
extraConfig = ''
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2017-05-10 14:47:58 +00:00
|
|
|
|
2017-05-12 09:35:35 +00:00
|
|
|
# VNC connection timeout
|
|
|
|
proxy_read_timeout 61s;
|
|
|
|
|
|
|
|
# Disable cache
|
|
|
|
proxy_buffering off;
|
2017-05-10 14:47:58 +00:00
|
|
|
'';
|
2017-05-12 09:35:35 +00:00
|
|
|
};
|
|
|
|
};
|
2017-05-10 14:47:58 +00:00
|
|
|
}
|