logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache Config Differences With Win32 Loungev Version
Author
ArtM



Joined: 23 Feb 2006
Posts: 59
Location: Bedford NS Canada

PostPosted: Thu 02 Mar '06 22:34    Post subject: Apache Config Differences With Win32 Loungev Version Reply with quote

I'm trying to install Apache 2.2 on my Win XP Pro system.

I note a number of directives from my previous config are missing in the bundled win32 http.conf, such as
- ScoreBoardFile
- PidFile
- Timeout
- KeepAlive
- MaxKeepAliveRequests
- Name (htaccess)
etc. etc.

Anyone know reason / explanation?

- Art
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3049
Location: Hilversum, NL, EU

PostPosted: Thu 02 Mar '06 22:40    Post subject: Reply with quote

The default configuration layout has been modularised by the ASF guys. Configuration snippets which can be used to enable commonly-used features are now bundled with Apache, and can be easily added to the main server config.

So all the directives you mention are in the conf/extra folder.
You can include by uncommenting the includes in httpd.conf:


    # Supplemental configuration
    #
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.

    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf

    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf

    # Fancy directory listings
    #Include conf/extra/httpd-autoindex.conf

    # Language settings
    #Include conf/extra/httpd-languages.conf

    # User home directories
    #Include conf/extra/httpd-userdir.conf

    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf

    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf

    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf

    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf

    # Various default settings
    #Include conf/extra/httpd-default.conf

    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf



Steffen
Back to top
ArtM



Joined: 23 Feb 2006
Posts: 59
Location: Bedford NS Canada

PostPosted: Thu 02 Mar '06 23:02    Post subject: Re: Apache Config Differences With Win32 Loungev Version Reply with quote

ArtM wrote:
I'm trying to install Apache 2.2 on my Win XP Pro system.

I note a number of directives from my previous config are missing in the bundled win32 http.conf, such as
- ScoreBoardFile
- PidFile
- Timeout
- KeepAlive
- MaxKeepAliveRequests
- Name (htaccess)
etc. etc.

Anyone know reason / explanation?

- Art


Got it! Found the 'Extras' Dir which had been hiding from my 'Aged Eyes'.

Thanks Steffen.

- Art
Back to top


Reply to topic   Topic: Apache Config Differences With Win32 Loungev Version View previous topic :: View next topic
Post new topic   Forum Index -> Apache