Add initial httpd.conf(5) example for httpd(8)
authorreyk <reyk@openbsd.org>
Tue, 22 Jul 2014 16:58:21 +0000 (16:58 +0000)
committerreyk <reyk@openbsd.org>
Tue, 22 Jul 2014 16:58:21 +0000 (16:58 +0000)
Requested by deraadt@

etc/examples/httpd.conf [new file with mode: 0644]

diff --git a/etc/examples/httpd.conf b/etc/examples/httpd.conf
new file mode 100644 (file)
index 0000000..37783e2
--- /dev/null
@@ -0,0 +1,12 @@
+# $OpenBSD: httpd.conf,v 1.1 2014/07/22 16:58:21 reyk Exp $
+
+# Macros
+ext_addr="egress"
+
+# Global Options
+# prefork 3
+
+# Servers
+server "default" {
+       listen on $ext_addr port 80
+}