Actually, the traditional way is compiling source from scratch. Below is information from OTN: Installing Apache, PHP, JDeveloper, and the PHP Extension on Linux
Apache 1.3
Login as Oracle user.
Copy/download apache_1.3.31.tar.gz
tar -zxf apache_1.3.31.tar.gz
cd apache_1.3.31
Configure:
./configure –enable-module=so –prefix=$HOME/apache –with-port=8888
Build: make
Install: make install
Start Apache: $HOME/apache/bin/apachectl start
Go to a browser and [...]
