mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
20 lines
No EOL
436 B
Nix
20 lines
No EOL
436 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."ahoneybun.net" = {
|
|
root = "/mnt/DATA/Website/ahoneybun.net/public";
|
|
locations."/" = {
|
|
extraConfig = ''
|
|
default_type text/html;
|
|
'';
|
|
};
|
|
locations."~* \.atom\.xml$" = {
|
|
extraConfig = ''
|
|
types { } default_type "application/atom+xml; charset=utf-8";
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
} |