Results 1 to 2 of 2
Hi
I want to make my computer an http server and I am runnig MDK 10.1 and the most imortant fact is that I am completley unfamiliar with how a ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-10-2005 #1
Wanna make a http server help needed
Hi
I want to make my computer an http server and I am runnig MDK 10.1 and the most imortant fact is that I am completley unfamiliar with how a server runs on any machine. Can someone suggest me some links which I could follow to get my basics right. Thanks in advance....
- 09-10-2005 #2
www.apache.org, this is the home page of apache web server project. You'll find install guides and server sources there. For more docs and turorials google for keywords apache+server+install+guide
But basically everything is simple, you may want to download sources, unpack, switch to extracted folder run 2 commands as regular user andCode:./configure make
as root. And start web serverCode:make install
also as root. Open http://127.0.0.1 in web browser and you'll see apache default page. Contents for this page are located in htdocs folder, somewhere in /usr/local/apache by default, if not defined explicitly while running ./configure script. To see list of available options for configuring apache installation runCode:apachectl start
Code:./configure --help


Reply With Quote
