Alternc  latest
Alternc logiel libre pour l'hébergement
apache2.conf
Go to the documentation of this file.
1 # AUTO GENERATED FILE
2 # Modify template in /etc/alternc/templates/
3 # and launch alternc.install if you want
4 # to modify this file.
5 #
6 # This module is loaded in /etc/apache/modules, and enabled by apache-modconf
7 # LoadModule vhost_alias_module /usr/lib/apache/1.3/mod_vhost_alias.so
8 
9 # Define the default user and group for mpm-itk
10 AssignUserId www-data www-data
11 
12 # Deny access to the root filesystem
13 <Directory />
14  Options +FollowSymLinks
15  AllowOverride None
16  Require all denied
17  Satisfy Any
18 </Directory>
19 #### End security parameters
20 
21 ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
22 <Directory "/usr/lib/cgi-bin">
23  AllowOverride None
24  Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
25  Require all granted
26 </Directory>
27 
28 <Directory /usr/share/alternc/panel/admin/>
29  Require all granted
30 
31  php_admin_flag safe_mode_gid off
32  php_admin_flag safe_mode off
33  php_value upload_max_filesize 50M
34  php_value post_max_size 50M
35  AddDefaultCharset UTF-8
36 # open_basedir allows access to specifics directories. We need to grant access to these directories for alternc, awstats, mailman...
37  php_admin_value open_basedir /usr/share/alternc-mailman/patches/:/etc/alternc/:/run/alternc:/usr/share/alternc/panel/:%%ALTERNC_HTML%%/:/tmp:/usr/share/php/:/var/cache/alternc-webalizer/:/etc/locale.gen:%%ALTERNC_LOGS%%:/etc/awstats/:/var/log/alternc/:/var/lib/alternc/panel/
38 
39 </Directory>
40 
41 
42 <Directory %%ALTERNC_HTML%% >
43  AllowOverride AuthConfig FileInfo Limit Options Indexes
44  Options -Indexes +Includes -FollowSymLinks +MultiViews +SymLinksIfOwnerMatch
45  Require all granted
46 
47  php_admin_flag safe_mode_gid off
48  php_admin_flag safe_mode off
49  php_admin_flag enable_dl off
50 
51  php_admin_value disable_functions chmod,chown,chgrp,link,symlink
52  php_admin_value disable_functions chgrp,link,symlink
53  php_admin_value sendmail_path /usr/lib/alternc/sendmail
54 
55  # Default upload_tmp_dir is /tmp . Be carefull, this value MUST be surcharged
56  # by the vhost to be a directory INSIDE the home of the user. If you don't do
57  # that, ACLs could be "strange" or inexistent.
58  php_admin_value upload_tmp_dir /tmp
59 </Directory>
60 
61 <Directory /usr/share/phpmyadmin>
62  AllowOverride AuthConfig Options FileInfo Limit Indexes
63  Options +Indexes +Includes +FollowSymLinks +MultiViews
64  Require all granted
65 </Directory>
66 <Directory /usr/share/squirrelmail>
67  AllowOverride AuthConfig Options FileInfo Limit Indexes
68  Options +Indexes +Includes +FollowSymLinks +MultiViews
69  Require all granted
70 </Directory>
71 
72 <VirtualHost *:80>
73  Include /etc/alternc/bureau.conf
74 </VirtualHost>
75 
76 # Now we include all the generated configuration
77 Include /var/lib/alternc/apache-vhost/vhosts_all.conf
78 
79 # Logs:
80 
81 LogFormat "%{LOGIN}e %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %T %{Host}i" alternc
82 CustomLog "|| /usr/sbin/vlogger -u alterncpanel -g alterncpanel -s access.log -t \"access-%Y%m%d.log\" %%ALTERNC_LOGS%%" alternc
83 
84 #Uncomment the following line to active Buffered Logs (Default: Off)
85 #BufferedLogs On