stockholm/lass/2configs/websites/default.nix

21 lines
370 B
Nix
Raw Normal View History

2017-08-01 18:47:34 +00:00
{ config, lib, ... }:
{
services.nginx = {
2023-07-23 21:11:54 +00:00
enable = true;
2017-08-01 18:47:34 +00:00
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedTlsSettings = true;
enableReload = true;
2017-08-01 18:47:34 +00:00
virtualHosts.default = {
locations."= /etc/os-release".extraConfig = ''
default_type text/plain;
alias /etc/os-release;
'';
};
};
}