mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
nginx module: add option to make vhost default
This commit is contained in:
parent
138945500e
commit
3830a890ab
2 changed files with 12 additions and 3 deletions
|
@ -80,6 +80,14 @@ with lib;
|
|||
'';
|
||||
};
|
||||
|
||||
default = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Makes this vhost the default.
|
||||
'';
|
||||
};
|
||||
|
||||
extraConfig = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue