default.nix (260B)
1 { config, lib, pkgs, ... }: 2 { 3 services.nginx.httpConfig = '' 4 server { 5 listen 80 default_server; 6 server_name _; 7 index index.html index.htm; 8 location / { 9 try_files $uri $uri/ =404; 10 } 11 } 12 ''; 13 }
citadelMy dotfiles, scripts and nix configs | |
git clone git://jb55.com/citadel | |
Log | Files | Refs | README | LICENSE |