That's helpful to know the line number changed. Indicates likely a parse error in the main file rather than one of the includes.
The only other thing I noticed was a missing close to an <IfModule>
. They can be nested but I never saw the matching close for both of these. Might explain why the last line is reported as failing if still looking for terminator. Simple fix to try anyway.
<IfModule alias_module>
Alias /usage.ennform/ "/var/www/usage/ennform/"
<Directory "/var/www/usage/ennform">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
# For some reason the network range would not work
Allow from All
#Allow from 10.0.0.0/24 10.0.1.0/24 10.0.2.0/24
</Directory>
<IfModule alias_module>