>
> You probably just need to give your authorised user permissions on the
> website or at least on the administrator folder.
>

I am an apache configuration noob, but doesn't this directive already
accomplish that?

<Location /CFIDE/administrator>
AuthType Digest
AuthName "cfadmins"
AuthDigestProvider file
AuthUserFile /etc/httpd/cfadmin.digest.pwd
Require valid-user
</Location>

I tried adding the following directive, but it doesn't help

<Location /CFIDE/administrator/images>
AuthType Digest
AuthName "cfadmins"
AuthDigestProvider file
AuthUserFile /etc/httpd/cfadmin.digest.pwd
Require valid-user
</Location>

On my local development environment, I can browse
to CFIDE/administrator/images/Banner_CFAdministrator.gif, but on the server
where I've set up restricted access to CFIDE according to the Lockdown
Guide, I get a 404 error. I can live without, but the icons are sometimes
helpful for a particular functionality, in managing datasources for
instance.

Thanks,

Nando



>
> Russ
>
> -----Original Message-----
> From: Nando [mailto:[email protected]]
> Sent: 28 December 2010 16:16
> To: cf-talk
> Subject: cfadmin - images not resolving
>
>
> Hi,
>
> I just set up restricted cfadmin access on a Linux system using the cf9
> Lockdown Guide that Pete Freitag wrote. I didn't do it exactly as he
> suggested because I'm not on a fixed IP, but close. The admin area
> functionally works, but the images aren't resolving, and it seems like they
> should, because their relative position is correct as far as I can see. I
> must be missing something "obvious". Can anyone clue me in? Here's my
> apache
> config:
>
> <VirtualHost *:443>
>    DocumentRoot *redacted*
>    ServerName *redacted*
> SSLEngine on
> SSLCertificateFile /etc/pki/tls/certs/localhost.crt
> SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
> SSLProtocol +SSLv3 +TLSv1
> SSLCipherSuite RSA:!EXP:!NULL:+HIGH:-MEDIUM:-LOW
> ErrorLog logs/cfadmin.ssl.error.log
> CustomLog logs/cfadmin.ssl.access.log common
> </VirtualHost>
>
> <Location /CFIDE/administrator>
> SSLRequireSSL
> </Location>
>
> <Location /CFIDE/administrator>
> AuthType Digest
> AuthName "cfadmins"
> AuthDigestProvider file
> AuthUserFile /etc/httpd/cfadmin.digest.pwd
> Require valid-user
> </Location>
>
> Thanks!
> --
> Nando
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340302
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to