2016-01-24 16:50:54 +01:00
|
|
|
# This file defines the options that can be used both for the Apache
|
|
|
|
# main server configuration, and for the virtual hosts. (The latter
|
|
|
|
# has additional options that affect the web server as a whole, like
|
|
|
|
# the user/group to run under.)
|
|
|
|
|
|
|
|
{ lib }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
serverAliases = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = ["www.example.org" "example.org"];
|
|
|
|
description = ''
|
|
|
|
Additional names of virtual hosts served by this virtual host configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
2016-05-09 16:46:44 +02:00
|
|
|
Port for the server. Defaults to 80 for http
|
2016-01-24 16:50:54 +01:00
|
|
|
and 443 for https (i.e. when enableSSL is set).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-01-25 19:36:21 +01:00
|
|
|
enableACME = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to ask Let's Encrypt to sign a certificate for this vhost.";
|
|
|
|
};
|
|
|
|
|
|
|
|
acmeRoot = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "/var/lib/acme/acme-challenge";
|
|
|
|
description = "Directory to store certificates and keys managed by the ACME service.";
|
|
|
|
};
|
|
|
|
|
2016-02-17 04:01:50 +01:00
|
|
|
acmeFallbackHost = mkOption {
|
2016-09-06 17:45:57 +02:00
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2016-02-17 04:01:50 +01:00
|
|
|
description = ''
|
|
|
|
Host which to proxy requests to if acme challenge is not found. Useful
|
|
|
|
if you want multiple hosts to be able to verify the same domain name.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-01-24 16:50:54 +01:00
|
|
|
enableSSL = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable SSL (https) support.";
|
|
|
|
};
|
|
|
|
|
|
|
|
forceSSL = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to always redirect to https.";
|
|
|
|
};
|
|
|
|
|
|
|
|
sslCertificate = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
example = "/var/host.cert";
|
|
|
|
description = "Path to server SSL certificate.";
|
|
|
|
};
|
|
|
|
|
2016-01-25 19:36:21 +01:00
|
|
|
sslCertificateKey = mkOption {
|
2016-01-24 16:50:54 +01:00
|
|
|
type = types.path;
|
|
|
|
example = "/var/host.key";
|
|
|
|
description = "Path to server SSL certificate key.";
|
|
|
|
};
|
|
|
|
|
|
|
|
root = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
|
|
|
example = "/data/webserver/docs";
|
|
|
|
description = ''
|
|
|
|
The path of the web root directory.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-04-03 12:58:34 +02:00
|
|
|
default = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Makes this vhost the default.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-01-24 16:50:54 +01:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
These lines go to the end of the vhost verbatim.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
globalRedirect = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = http://newserver.example.org/;
|
|
|
|
description = ''
|
|
|
|
If set, all requests for this host are redirected permanently to
|
|
|
|
the given URL.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
basicAuth = mkOption {
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
default = {};
|
2016-05-09 16:46:44 +02:00
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
user = "password";
|
|
|
|
};
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Basic Auth protection for a vhost.
|
|
|
|
|
|
|
|
WARNING: This is implemented to store the password in plain text in the
|
|
|
|
nix store.
|
|
|
|
'';
|
2016-01-24 16:50:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
locations = mkOption {
|
|
|
|
type = types.attrsOf (types.submodule (import ./location-options.nix {
|
|
|
|
inherit lib;
|
|
|
|
}));
|
|
|
|
default = {};
|
2016-05-09 16:46:44 +02:00
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
"/" = {
|
|
|
|
proxyPass = "http://localhost:3000";
|
|
|
|
};
|
|
|
|
};
|
2016-01-24 16:50:54 +01:00
|
|
|
'';
|
2016-05-09 16:46:44 +02:00
|
|
|
description = "Declarative location config";
|
2016-01-24 16:50:54 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|