1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
.\" $OpenBSD: httpd.8,v 1.46 2014/08/07 06:56:41 deraadt Exp $
.\"
.\" Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: August 7 2014 $
.Dt HTTPD 8
.Os
.Sh NAME
.Nm httpd
.Nd HTTP daemon
.Sh SYNOPSIS
.Nm
.Op Fl dnv
.Op Fl D Ar macro Ns = Ns Ar value
.Op Fl f Ar config_file
.Sh DESCRIPTION
The
.Nm
daemon is a HTTP server with FastCGI and SSL support.
.Pp
The FastCGI implementation has optional socket support.
.Nm
can log to syslog or per-server files with several standard formats.
.Pp
.Nm
rereads its configuration file when it receives
.Dv SIGHUP
by re-executing itself with the name and options it was started
with, e.g.\&
.Pa /usr/sbin/httpd .
.Nm
reopens log files when it receives
.Dv SIGUSR1 .
.Pp
The options are as follows:
.Bl -tag -width Dssmacro=value
.It Fl d
Debug mode.
Create one server and don't detach or become a daemon.
This allows for easy monitoring of
.Nm .
.It Fl n
Check that the configuration is valid, but don't start any servers.
.It Fl v
Verbose mode.
Multiple
.Fl v
options increases the verbosity.
.It Fl D Ar macro Ns = Ns Ar value
Set a
.Ar macro
to a
.Ar value .
Macros can be referenced in the configuration files.
.It Fl f Ar config_file
Specifies the name of the configuration file.
.El
.Sh FILES
.Bl -tag -width "/var/www/logs/access.logXX" -compact
.It /etc/httpd.conf
Default configuration file.
.It /var/run/httpd.sock
.Ux Ns -domain
socket used for communication with
.Nm .
.It /etc/ssl/server.crt
Default SSL/TLS server certificate.
.It /etc/ssl/private/server.key
Default SSL/TLS server key.
.It /var/www/logs/access.log
Default access log file.
.It /var/www/logs/error.log
Default error log file.
.El
.Sh SEE ALSO
.Xr httpd.conf 5
.Sh HISTORY
The
.Nm
program first appeared in
.Ox 5.6 .
.Nm
is based on
.Xr relayd 8 .
.Sh AUTHORS
.An -nosplit
The
.Nm
program was written by
.An Reyk Floeter Aq Mt reyk@openbsd.org .
|