Add initial astroneer server (not used yet)

This commit is contained in:
Evie Litherland-Smith 2023-12-16 19:38:33 +00:00
parent 56d69fb18f
commit 74fce4cc5e

6
services/astroneer.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ steamcmd ];
networking.firewall.allowedTCPPorts = [ 8777 ];
services.caddy.virtualHosts."astro.xenia.me.uk".extraConfig =
"reverse_proxy http://localhost:8777";
}