Compare commits

..

2 commits

Author SHA1 Message Date
Tristan Daniël Maat 2a7f905bc2
WIP: Add hydra 2021-05-17 00:15:07 +01:00
Tristan Daniël Maat a24c68d9db
webserver: Use SIGKILL instead of SIGTERM
This is necessary because rocket 0.4 does not support SIGTERM.
2021-05-17 00:14:00 +01:00

View file

@ -34,6 +34,10 @@
ports = [ "3002:3002" ];
volumes = [ "tlaternet-mail:/srv/mail" ];
extraOptions = [ "--hostname=tlater.net" ];
extraOptions = [
"--hostname=tlater.net"
# This can change with rocket 0.5.
"--stop-signal=SIGKILL"
];
};
}