Unverified Commit d1ee91c2 authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #262796 from SuperSandro2000/patch-1

nixos/nginx: document implicit default port 80
parents 76827e3f f4d631c3
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 {