-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathchamilo.conf
More file actions
34 lines (33 loc) · 974 Bytes
/
chamilo.conf
File metadata and controls
34 lines (33 loc) · 974 Bytes
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
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName docker.chamilo.net
DocumentRoot /var/www/chamilo/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/chamilo/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
# For Apache 2.2
#Order allow,deny
#allow from all
# For Apache 2.4
Require all granted
</Directory>
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/docker.chamilo.net-error.log
CustomLog ${APACHE_LOG_DIR}/docker.chamilo.net-access.log combined
php_value error_logging On
php_value error_reporting 6143
php_value display_errors On
php_value memory_limit 128M
php_value upload_max_filesize 2000M
php_value post_max_size 2000M
php_value xdebug.enable On
php_value session.cookie_httponly 1
php_value short_open_tag Off
php_value max_execution_time 240
php_value allow_url_fopen Off
php_value date.timezone Europe/London
</VirtualHost>