I have a apache web server installed on my Ubuntu 11.04 laptop, I have no idea on how to use it. Where can I find information about it? Is there anything I "should" do when I now have installed it.
feedback
|
closed as not a real question by Nifle, Wuffers, studiohack♦ Dec 17 '11 at 20:36
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
The standard configuration of Apache should be fine if you want to run a single website without SSL. As a matter of fact, For anything selse, you can refer to the official documentation: Apache Tutorials Edit: To answer you last question: Apache does not come with a GUI, but you can download ApacheConf form Apache-GUI.com | |||||||||||||
feedback
|
|
Well, basically you can host a HTML-based website(s) on your local machine (and that's about it). I think there's a small, menu-based GUI but I feel that it's just easier to edit httpd.conf directly. If you want to develop with PHP (since you really can't do anything dynamic with straight HTML), you'll need to install it (and then restart Apache). To see if PHP is correctly installed, go to your /var/www/ directory and create a file called test.php with this line in it:
Then, just to go http://localhost/test.php. If that doesn't resolve, you'll need to follow these instructions to install it. I hope that's what you're looking for. | |||
|
feedback
|