]> git.llucax.com Git - mecon/scripts.git/blob - subversion/apache/sites-available/sapo.conf
Se agrega tc2120, por ahora la parte del CODEP esta desactivada.
[mecon/scripts.git] / subversion / apache / sites-available / sapo.conf
1 # $Id$
2 <VirtualHost *>
3         ServerAdmin hdelbo@mecon.gov.ar
4         ServerName portal.mecon.ar
5
6         # SSL
7         #SSLEngine on
8         SSLCertificateFile /etc/apache2/ssl/portal.mecon.ar.cert
9         SSLCertificateKeyFile /etc/apache2/ssl/portal.mecon.ar.key
10
11         DocumentRoot /var/www/sapo/
12         <Directory />
13                 Options FollowSymLinks
14                 AllowOverride None
15                 # Permisos
16                 AuthType Basic
17                 AuthUserFile /etc/svn/passwd
18                 AuthGroupFile /etc/svn/group
19 #               AuthType Digest
20                 AuthName "Repositorio Subversion"
21 #               AuthDigestDomain /
22 #               AuthDigestFile /etc/svn/passwd.digest
23 #               AuthDigestGroupFile /etc/svn/group
24                 Require valid-user
25         </Directory>
26         <Directory /var/www/>
27                 Options Indexes FollowSymLinks ExecCGI Multiviews
28                 AllowOverride None
29                 Order allow,deny
30                 allow from all
31         </Directory>
32
33         ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
34         <Directory "/usr/lib/cgi-bin">
35                 AllowOverride None
36                 Options ExecCGI 
37                 Order allow,deny
38                 Allow from all
39         </Directory>
40
41         ErrorLog /var/log/apache2/error.log
42
43         # Possible values include: debug, info, notice, warn, error, crit,
44         # alert, emerg.
45         LogLevel warn
46
47         CustomLog /var/log/apache2/access.log combined
48         ServerSignature On
49         
50         Alias /icons/ "/usr/share/apache2/icons/"
51         <Directory "/usr/share/apache2/icons">
52             Options Indexes MultiViews
53             AllowOverride None
54             Order allow,deny
55             Allow from all
56         </Directory>
57
58         Alias /doc/ "/usr/share/doc/"
59         <Directory "/usr/share/doc/">
60             Options Indexes MultiViews FollowSymLinks
61             AllowOverride None
62             Order deny,allow
63             Deny from all
64             Allow from 10.10.0.0/255.255.0.0
65         </Directory>
66 </VirtualHost>