Vad är det du vill göra? Du behöver i princip inte ändra något för att få igång den. Det är först om du vill köra t ex virtual hosting eller annat som du behöver gå in och ändra i httpd.conf.
Titta i httpd.conf och ställ in lämplig document root, och lägg dina filer där. httpd.conf är rikligt kommenterad. Mer än så behövs egentligen inte.. Vilket operativsystem kör du, och vilken version av Apache?
Bara några utdrag från configgen, vad betyder dom/vad ska jag skriva?
# BindAddress: You can support virtual hosts with this option. This directive
# is used to tell the server which IP address to listen to. It can either
# contain "*", an IP address, or a fully qualified Internet domain name.
# See also the <VirtualHost> and Listen directives.
#
#BindAddress *
..
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Please read the file README.DSO in the Apache 1.3 distribution for more
# details about the DSO mechanism and run `apache -l' for the list of already
# built-in (statically linked and thus always available) modules in your Apache
# binary.
#
# Note: The order in which modules are loaded is important. Don't change
# the order below without expert advice.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule status_module modules/mod_status.so
#LoadModule info_module modules/mod_info.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule anon_auth_module modules/mod_auth_anon.so
#LoadModule dbm_auth_module modules/mod_auth_dbm.so
#LoadModule digest_auth_module modules/mod_auth_digest.so
#LoadModule digest_module modules/mod_digest.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
Du behöver inte bry dig om de stycken som du klistrat in ovan. Det första är till för att köra virtual hosts, dvs om du vill serva två domäner på samma maskin (om du t ex har ett webhotell).
Den andra listar moduler som laddas in i servern, men de behöver du inte bry dig om.
Det finns två huvudversioner av Apache, 1.3 och 2.0. 99% av de som kör Apache använder 1.3, delvis beroende på att vissa moduler (t ex mod_php) inte fungerar särskilt bra med 2.0 (tvåan använder trådar, men en hel del av de funktioner som php erbjuder är inte trådsäkra). Tvåan är dock mer bättre anpassad för att kunna köras under Windows (även om det är fullt möjligt även med 1.3).
Hur som helst, prova att bara starta apache och gå till localhost, eller 127.0.0.1 med en webläsare. Om installationen lyckats så kommer det att dyka upp ett meddelande.