Mod_Bikeshed

Started by DnvrSysEngr, November 15, 2022, 10:58:54 PM

Previous topic - Next topic

DnvrSysEngr

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

Gregg

I'll give it a try maƱana (Friday)

Gregg


DnvrSysEngr



DnvrSysEngr

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