I put directory svn and svn-auth in /var/www
and already change owner and set permission with chown -R apache.apache /var/www/svn* and chmod 600 -R /var/www/svn*
My configuration
svn.mydomain.com.conf
<VirtualHost 127.0.0.1:8080>
ServerName svn.mydomain.com
<Location />
DAV svn
SVNPath /var/www/svn/REPOSITORY_NAME
AuthType Basic
AuthName "Sub
If I have multiple subdomains in an Apache vhost file, and they all have the same ServerAdmin, can I put the ServerAdmin directive once at the top outside of the VirtualHost tags?
How can I password protect an IIS directory when I only have FTP access to the server? I can't adjust any IIS settings or add users or anything like that.
The answer to:
IIS Basic Authorization ala .htaccess/.htpasswd in apache
does not help as I only have access to the server via FTP. I just need to password protect a directory.
I've tried several variations of a web.config file.
I'm attempting to set up a server using Apache. In the conf file, I inserted the code:
<Directory />
Options FollowSymLinks
AllowOverride AuthConfig
AuthType Basic
AuthName "Restricted Files"
AuthBasicProvider file
AuthUserFile C:\...\serverpass.txt
Require user Admin
</Directory>
In order to try and get Apache to require a password.
Using Apache 2.2, I would like to use mod_rewrite to redirect un-authenticated users to use https, if they are on http..
I have a bunch of URLs which all point to the same directory on the server in apache's conf files.
hello everyone, and thank you for your help. I'm new to your forum and I look forward to some good times.
I am a novice at apache and am trying to protect my directories. I could use one of those management programs, but that wouldn't be any fun, right?
anyway, I opted to go with .htaccess and have been reading up on it.
This is my Apache vHost-configuration:
<VirtualHost subversion.domain.com:80>
ServerAdmin changed@domain.com
ServerName servername.domain.com
Documentroot /srv/www/htdocs/svn
ErrorLog /var/log/apache2/subversion-error_log
CustomLog /var/log/apache2/subversion-access_log combined
HostnameLookups Off
UseCanonicalName Off
ServerSignature Off
<Locat
HI All,
I have tried to authenticate my webpage with username & password but its not working for me.