summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2023-03-23 15:11:59 +0000
committerJoe Orton <jorton@apache.org>2023-03-23 15:11:59 +0000
commit63f6b98eb85c8d21b7ac4d4834f2cabaa30c900b (patch)
tree5a61c82a0dd5d82d3bd91e7940bacde6df374f84 /modules
parent08a65eee578d7d66620d5fa6ff25983e727e659d (diff)
downloadhttpd-63f6b98eb85c8d21b7ac4d4834f2cabaa30c900b.tar.gz
mod_wombat => mod_lua
Fix SVN URL Submitted by: Sebb <sebb@apache.org> Github: closes #352 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1908671 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/lua/docs/README4
-rw-r--r--modules/lua/docs/building-from-subversion.txt12
-rw-r--r--modules/lua/test/test_httpd.conf2
3 files changed, 9 insertions, 9 deletions
diff --git a/modules/lua/docs/README b/modules/lua/docs/README
index 632945a63c..3455e150ff 100644
--- a/modules/lua/docs/README
+++ b/modules/lua/docs/README
@@ -3,10 +3,10 @@ Index of documents:
Basic build instructions
basic-configuration.txt
- Getting mod_wombat up and running
+ Getting mod_lua up and running
running-developer-tests.txt
How to set up and run the developer and regression tests
writing-handlers.txt
- basics on writing handlers in mod_wombat \ No newline at end of file
+ basics on writing handlers in mod_lua \ No newline at end of file
diff --git a/modules/lua/docs/building-from-subversion.txt b/modules/lua/docs/building-from-subversion.txt
index 98da7bf263..4c71cb8e99 100644
--- a/modules/lua/docs/building-from-subversion.txt
+++ b/modules/lua/docs/building-from-subversion.txt
@@ -15,9 +15,9 @@ Install Apache HTTPD 2.2
http://httpd.apache.org/download.cgi
You can build apache pretty much any way you like, as long as you enable
- dynamic module loading (--enable-so) so that mod_wombat can be loaded.
+ dynamic module loading (--enable-so) so that mod_lua can be loaded.
- You may user (and I encourage you to!) the threaded MPMs -- mod_wombat
+ You may user (and I encourage you to!) the threaded MPMs -- mod_lua
plays nicely with them.
I build it with these flags:
@@ -32,7 +32,7 @@ Install libapreq2
The download link is in the page body, NOT under the "Download!" link
in the left hand column.
- Right now, mod_wombat requires libapreq2 for parsing entity bodies. This
+ Right now, mod_lua requires libapreq2 for parsing entity bodies. This
dependency will probably be made optional in the near future, but for now
you need it.
@@ -42,8 +42,8 @@ Install libapreq2
--with-apache2-apxs=/Users/brianm/.opt/httpd-2.2.4-worker-wombat/bin/apxs
-Install mod_wombat from subversion
- http://svn.apache.org/repos/asf/httpd/mod_wombat/trunk
+Install mod_lua from subversion
+ http://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/lua
The first step, when building from subversion, is to bootstrap autoconf.
To do this run the bootstrap script:
@@ -69,4 +69,4 @@ Install mod_wombat from subversion
option, it always seems to work.
-That is it. To configure mod_wombat, look at the basic-configuration.txt document. \ No newline at end of file
+That is it. To configure mod_lua, look at the basic-configuration.txt document. \ No newline at end of file
diff --git a/modules/lua/test/test_httpd.conf b/modules/lua/test/test_httpd.conf
index 27e3a506c9..13af6e75af 100644
--- a/modules/lua/test/test_httpd.conf
+++ b/modules/lua/test/test_httpd.conf
@@ -2,7 +2,7 @@
ServerRoot "/Users/brianm/.opt/httpd-2.2.3-worker-for-lua"
DocumentRoot "/Users/brianm/src/wombat/test/htdocs"
-# Customize this value to point to the top of mod_wombat's test dir
+# Customize this value to point to the top of mod_lua's test dir
LuaRoot /Users/brianm/src/wombat/test
Listen 8000