In my httpd.conf
file I have these lines:
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
AddModule mod_proxy.c
ProxyPass /myapp http://ec2-54-242-101-196.compute-1.amazonaws.com:8080/
ProxyPassReverse /myapp http://ec2-54-242-101-196.compute-1.amazonaws.com:8080/
When I restart Apache, I get an error like this :
Syntax error on line 2 of /etc/apache2/httpd.conf:
Invalid command 'AddModule', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
...fail!
I followed the tutorial form here.
Where am I making a mistake?
The AddModule
directive is not present in httpd 2.0 and later. Remove it.
Are you really using Apache httpd 1.3? Read the last line on that whole page you referenced. Also, are you really using Tomcat 4.1? Try using the documentation for the version you are actually using. In fact, forget the Tomcat documentation. Go for the httpd documentation.