Unverified Commit f4d631c3 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/nginx: document implicit default port 80

parent 448f34e9
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -35,7 +35,10 @@ with lib;
          };
          port = mkOption {
            type = types.nullOr port;
            description = lib.mdDoc "Port number.";
            description = lib.mdDoc ''
              Port number to listen on.
              If unset and the listen address is not a socket then nginx defaults to 80.
            '';
            default = null;
          };
          ssl = mkOption {