diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2023-11-03 13:03:03 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2023-11-03 13:03:03 +0000 |
commit | ab5f8bc7e0a40ba2db612f5bef60877a9370e39c (patch) | |
tree | 109831d000fa18c68874d484c14391bcc756d733 /usr.sbin | |
parent | c8dd65c3983adf434c0db95801592305d2e27e67 (diff) |
Be explicit in saying what a shell pattern is.
I'm not a big fan of idiosyncratic lua patterns, especially in
that context, but pointing towards them and not mentionning glob(7)
is thoroughly confusing. Don't push lua patterns down people throats !
At least you know what the incredibly fuzzy "shell patterns" refers to
now !
okay millert@, jmc@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/httpd.conf.5 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.sbin/httpd/httpd.conf.5 b/usr.sbin/httpd/httpd.conf.5 index ef4f5b5811f..05fba1c340b 100644 --- a/usr.sbin/httpd/httpd.conf.5 +++ b/usr.sbin/httpd/httpd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: httpd.conf.5,v 1.124 2023/10/29 11:27:11 kn Exp $ +.\" $OpenBSD: httpd.conf.5,v 1.125 2023/11/03 13:03:02 espie Exp $ .\" .\" Copyright (c) 2014, 2015 Reyk Floeter <reyk@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 29 2023 $ +.Dd $Mdocdate: November 3 2023 $ .Dt HTTPD.CONF 5 .Os .Sh NAME @@ -186,7 +186,9 @@ first defined section that matches the listening port. .Bl -tag -width Ds .It Ic server Ar name Brq ... -Match the server name using shell globbing rules. +Match the server name using shell globbing rules, +see +.Xr glob 7 . This can be an explicit name, .Ar www.example.com , or a name including wildcards, @@ -867,6 +869,7 @@ server "example.com" { .Ed .Sh SEE ALSO .Xr htpasswd 1 , +.Xr glob 7 , .Xr patterns 7 , .Xr httpd 8 , .Xr ocspcheck 8 , |