Mailing List Archive

svn commit: r1908671 - in /httpd/httpd/trunk/modules/lua: docs/README docs/building-from-subversion.txt test/test_httpd.conf
Author: jorton
Date: Thu Mar 23 15:11:59 2023
New Revision: 1908671

URL: http://svn.apache.org/viewvc?rev=1908671&view=rev
Log:
mod_wombat => mod_lua
Fix SVN URL

Submitted by: Sebb <sebb@apache.org>
Github: closes #352

Modified:
httpd/httpd/trunk/modules/lua/docs/README
httpd/httpd/trunk/modules/lua/docs/building-from-subversion.txt
httpd/httpd/trunk/modules/lua/test/test_httpd.conf

Modified: httpd/httpd/trunk/modules/lua/docs/README
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/docs/README?rev=1908671&r1=1908670&r2=1908671&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/docs/README (original)
+++ httpd/httpd/trunk/modules/lua/docs/README Thu Mar 23 15:11:59 2023
@@ -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

Modified: httpd/httpd/trunk/modules/lua/docs/building-from-subversion.txt
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/docs/building-from-subversion.txt?rev=1908671&r1=1908670&r2=1908671&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/docs/building-from-subversion.txt (original)
+++ httpd/httpd/trunk/modules/lua/docs/building-from-subversion.txt Thu Mar 23 15:11:59 2023
@@ -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

Modified: httpd/httpd/trunk/modules/lua/test/test_httpd.conf
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/test/test_httpd.conf?rev=1908671&r1=1908670&r2=1908671&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/test/test_httpd.conf (original)
+++ httpd/httpd/trunk/modules/lua/test/test_httpd.conf Thu Mar 23 15:11:59 2023
@@ -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