OLD | NEW |
1 <VirtualHost *:{{port}}> | 1 <VirtualHost *:{{port}}> |
2 ServerAdmin webmaster@localhost | 2 ServerAdmin webmaster@localhost |
3 | 3 |
4 DocumentRoot {{server_root}} | 4 DocumentRoot {{server_root}} |
5 <Directory /> | 5 <Directory /> |
| 6 FileETag MTime Size |
6 Options FollowSymLinks | 7 Options FollowSymLinks |
7 AllowOverride None | 8 AllowOverride None |
8 </Directory> | 9 </Directory> |
9 <Directory {{server_root}}> | 10 <Directory {{server_root}}> |
| 11 FileETag MTime Size |
10 Options Indexes FollowSymLinks MultiViews | 12 Options Indexes FollowSymLinks MultiViews |
11 AllowOverride None | 13 AllowOverride None |
12 Order allow,deny | 14 Order allow,deny |
13 allow from all | 15 allow from all |
14 </Directory> | 16 </Directory> |
15 | 17 |
16 ErrorLog ${APACHE_LOG_DIR}/error.log | 18 ErrorLog ${APACHE_LOG_DIR}/error.log |
17 | 19 |
18 # Possible values include: debug, info, notice, warn, error, crit, | 20 # Possible values include: debug, info, notice, warn, error, crit, |
19 # alert, emerg. | 21 # alert, emerg. |
20 LogLevel warn | 22 LogLevel warn |
21 | 23 |
22 CustomLog ${APACHE_LOG_DIR}/access.log combined | 24 CustomLog ${APACHE_LOG_DIR}/access.log combined |
23 | 25 |
24 {{if tests_root}} | 26 {{if tests_root}} |
25 Alias /test {{tests_root}} | 27 Alias /test {{tests_root}} |
26 {{endif}} | 28 {{endif}} |
27 | 29 |
28 FallbackResource /index.html | 30 FallbackResource /index.html |
29 | 31 |
30 Header unset Cache-Control | 32 Header unset Cache-Control |
31 Header set Cache-Control "max-age=0, public, must-revalidate" | 33 Header set Cache-Control "max-age=0, public, must-revalidate" |
32 | 34 |
33 </VirtualHost> | 35 </VirtualHost> |
OLD | NEW |