The Apache Haus Forum

Forum Topics => Apache 2.4 => Topic started by: DnvrSysEngr on November 15, 2022, 10:58:54 PM

Title: Mod_Bikeshed
Post by: DnvrSysEngr on November 15, 2022, 10:58:54 PM
Hi Gregg:

Any plans to update Mod_Bikeshed to VC17?  Looks like v1.0 is out?

     (https://github.com/JBlond/mod_bikeshed)

Thank you.

  --Scott
Title: Re: Mod_Bikeshed
Post by: Gregg on November 18, 2022, 06:32:23 AM
I'll give it a try maƱana (Friday)
Title: Re: Mod_Bikeshed
Post by: Gregg on November 18, 2022, 04:51:02 PM
They are here: https://www.apachehaus.net/modules/mod_bikeshed/
Title: Re: Mod_Bikeshed
Post by: DnvrSysEngr on November 18, 2022, 07:18:16 PM
Thank you Gregg.
Title: Re: Mod_Bikeshed
Post by: puertoblack2003 on November 19, 2022, 04:46:09 PM
Quote from: Gregg on November 18, 2022, 04:51:02 PMThey are here: https://www.apachehaus.net/modules/mod_bikeshed/

fyi, the conf file is missing for the vc17 file  ;)
Title: Re: Mod_Bikeshed
Post by: DnvrSysEngr on November 21, 2022, 02:24:18 AM
Puerto:

Here are instructions on how to install mod_bikeshed:

INSTALL
 *   -------
 *   1. Copy the module to your Apache's modules folder.
 *   2. Copy the included .conf file to your Apache's /conf/extra
 *      directory.
 *   3. In your httpd.conf file, and the below line to the file somewhere in the
 *      global context (right after the LoadModule section is good);
 *   
 *      Include conf/extra/httpd-bikeshed.conf
 *   
 *   4. Restart Apache.
 *   
 *   5. A simple test to see if it is working is to look at the server
 *      signature at the bottom of a simple directory index. You can
 *      also check via a scripting language like PHP [phpinfo()] or
 *      other.

Here is a sample config file for mod_bikeshed:

######################################################################
# Apache Configuration File for mod_bikeshed
#
# Place this file in your Apache /conf/extra directory, modify as
# desired and then add to your httpd.conf file somewhere in the
# global context;
#
# Include conf/extra/httpd-bikeshed.conf
#
######################################################################

LoadModule bikeshed_module modules/mod_bikeshed.so

<IfModule bikeshed_module>

# Turn on the module
BikeShedTokensReplace On

# The string to replace Apache Tokens with or set to
# "None" to disable ServerTokens
#BikeShedTokensString "None"
BikeShedTokensString "MyServer/1.2.3 my_module/1.0"

</IfModule>

# End of Apache Configuration File for mod_bikeshed
Title: Re: Mod_Bikeshed
Post by: puertoblack2003 on November 21, 2022, 04:05:50 PM
thank you