Fix some Apache types
[hcoop/domtool2.git] / lib / apache.dtl
index db9dc37..9ad396a 100644 (file)
@@ -49,16 +49,16 @@ context Location;
 extern type location;
 {{A valid URI prefix}}
 
-extern val location : location -> Vhost & Location => [Vhost & !Location];
+extern val location : location -> ^Vhost & Location => [Vhost & !Location];
 extern val directory : your_path -> ^Vhost & Location => [Vhost & !Location];
 {{Set some configuration specific to a URI prefix or filesystem directory,
   respectively.}}
 
-extern val serverAliasHost : your_domain_host -> [Vhost];
+extern val serverAliasHost : your_domain_host -> [Vhost & !Location];
 {{Give an alternate hostname for this vhost.}}
-extern val serverAlias : host -> [Vhost];
+extern val serverAlias : host -> [Vhost & !Location];
 {{Like serverAliasHost, but adds an alias for the given hostname at every domain
   being configured.}}
-extern val serverAliasDefault : [Vhost];
+extern val serverAliasDefault : [Vhost & !Location];
 {{Like serverAliasDefault, but adds aliases for the domains being configured
   instead of any of their hosts/"subdomains".}}