HSAdmin Backend Domains, E-Mail, Datenbanken
Michael Hierweck
2014-08-12 545ad6fc16bc7ebd62f48dd044274bd972611048
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file is managed by HSAdmin.
# Do not edit manually. Changes will be overwritten.
#
 
#foreach( $pac in ${hive.pacs} )
<VirtualHost ${pac.curINetAddr.inetAddr}>
        DefaultRoot             ~ ${pac.name}
        ServerName              "${pac.name}.hostsharing.net"
        AllowOverwrite          on
        AllowForeignAddress     on
 
        <Limit LOGIN>
                Order           allow,deny
                AllowGroup      ${pac.name}
                DenyAll
        </Limit>
 
        <Anonymous /home/pacs/${pac.name}/ftp>
                User            ${pac.name}
                Group           ${pac.name}
                UserAlias       anonymous ${pac.name}
                UserAlias       ftp ${pac.name}
                DirFakeUser     on ftp
                DirFakeGroup    on ftp
                DirFakeMode     000
                AuthAliasOnly   on
                
                <Limit WRITE>
                        DenyAll
                </Limit>
                
        </Anonymous>
</VirtualHost>
 
#end