[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] HTACCESS not working on RAQ4



I have htaccess files that quit working after a year.  I recently applied
some new patches.

My haccess file looks like:

order allow,deny
allow from all
require group site32
AuthName www.gradytyroch.com
Authtype Basic

My access.conf looks like:
##
## access.conf -- Apache HTTP server configuration file
##

# access.conf: Global access configuration
# Online docs at http://www.apache.org/

# This file defines server settings which affect which types of services
# are allowed, and in what circumstances.

# Each directory to which Apache has access, can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).

# Originally by Rob McCool

# First, we configure the "default" to be a very restrictive set of
# permissions.

<Directory />
Options None
AllowOverride AuthConfig Indexes Limit
AuthFailDelay 2000000
</Directory>

# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.

# deal with symlinks in image directory
<Directory /usr/admserv/html/.cobalt/images/>
Options +SymLinksIfOwnerMatch
</Directory>

# This should be changed to whatever you set DocumentRoot to.

<Directory /home/sites/>

# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".

# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.

Options Indexes FollowSymLinks Includes MultiViews

# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"

AllowOverride All

# ignore .ht*
<Files ".ht*">
deny from all
</Files>

# Controls who can get stuff from this server.

order allow,deny
allow from all

AuthFailDelay 2000000

# Frontpage subwebs use a nice mix of pam and Basic authentication
AuthPAM_FallThrough on

</Directory>

# be more restrictive within a site
<Directory /home/sites/*/>
Options -FollowSymLinks +SymLinksIfOwnerMatch
</Directory>

# @@ServerRoot@@/cgi-bin should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.

#<Directory /home/httpd/cgi-bin>
#AllowOverride None
#Options ExecCGI
#</Directory>

# Allow server status reports, with the URL of
http://servername/server-status
# Change the ".your_domain.com" to match your domain to enable.

#<Location /server-status>
#SetHandler server-status

#order deny,allow
#deny from all
#allow from .your_domain.com
#</Location>

# There have been reports of people trying to abuse an old bug from pre-1.1
# days.  This bug involved a CGI script distributed as a part of Apache.
# By uncommenting these lines you can redirect these attacks to a logging
# script on phf.apache.org.  Or, you can record them yourself, using the
script
# support/phf_abuse_log.cgi.

#<Location /cgi-bin/phf*>
#deny from all
#ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
#</Location>

# You may place any other directories or locations you wish to have
# access information for after this one.


<Directory /home/sites/site3>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site1>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site2>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site4>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site5>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site7>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site8>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site9>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site10>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site6>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site15>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site14>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site16>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site18>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site19>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site21>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site13>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site22>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site24>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site12>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site25>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site28>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site29>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site30>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site32>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site11>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site34>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site35>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site36>
AllowOverride All
Options All
</Directory>
<Directory /home/sites/site33>
AllowOverride All
Options All
</Directory>

Can somebody please help me!