summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/tests/var-include.conf
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-29 17:53:00 +0000
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-29 17:53:00 +0000
commit59f5fd20e2f59ae186d5a461aef7782dd55e4e7b (patch)
tree10475faf0b6dcb812b64da679f4ae8ff01c45874 /data/lighttpd/lighttpd-1.4.53/tests/var-include.conf
parentf06e297cd175cca39745f6d1970225ae88aa68f1 (diff)
Updated lighttpd.
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/tests/var-include.conf')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/tests/var-include.conf47
1 files changed, 47 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/tests/var-include.conf b/data/lighttpd/lighttpd-1.4.53/tests/var-include.conf
new file mode 100644
index 000000000..e134c790c
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/tests/var-include.conf
@@ -0,0 +1,47 @@
+
+debug.log-request-handling = "enable"
+#debug.log-condition-handling = "enable"
+
+server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
+
+## bind to port (default: 80)
+server.port = 2048
+
+## bind to localhost (default: all interfaces)
+server.bind = "localhost"
+server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
+server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
+server.name = "www.example.org"
+server.tag = "Apache 1.3.29"
+
+
+server.modules = (
+ "mod_redirect",
+ "mod_accesslog",
+)
+
+accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
+
+mimetype.assign = (
+ ".html" => "text/html",
+)
+
+url.redirect = (
+ "" => "/default",
+)
+
+$HTTP["host"] == "www.example.org" {
+ server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
+ server.name = "www.example.org"
+ url.redirect = (
+ "" => "/redirect",
+ )
+}
+
+$HTTP["host"] == "test.example.org" {
+ server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
+ server.name = "test.example.org"
+ var.myvar = "good"
+ var.one = 1
+ include "var-include-sub.conf"
+}