From 400400fa1945d4cba1e534e998c926073f79d1c8 Mon Sep 17 00:00:00 2001 From: reyk <> Date: Tue, 22 Jul 2014 16:58:21 +0000 Subject: [PATCH] Add initial httpd.conf(5) example for httpd(8) Requested by deraadt@ --- src/etc/examples/httpd.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/etc/examples/httpd.conf diff --git a/src/etc/examples/httpd.conf b/src/etc/examples/httpd.conf new file mode 100644 index 00000000..37783e27 --- /dev/null +++ b/src/etc/examples/httpd.conf @@ -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 +}