isadle, fix steam, etc
This commit is contained in:
parent
a422110adf
commit
4d58ae60b0
12 changed files with 253 additions and 151 deletions
17
hosts/fili/services/websites/isadle.nix
Normal file
17
hosts/fili/services/websites/isadle.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, flakes, ... }:
|
||||
{
|
||||
services.nginx = {
|
||||
virtualHosts."isadle.donsz.nl" = {
|
||||
forceSSL = true;
|
||||
http2 = true;
|
||||
enableACME = true;
|
||||
|
||||
locations."/" = {
|
||||
root = flakes.isadle.packages.${pkgs.system}.isadle;
|
||||
extraConfig = ''
|
||||
autoindex on;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue