I am running a webserver, which serves ~/public_html/ as http://www.example.com/~user/
I wish to also/instead serve ~/html_archive as http://archive.example.com/~user/
However, adding a UserDirectory directive into a VirtualHost:
# /etc/hiawatha/vhosts/archive.conf
VirtualHost {
Hostname = archive.website
WebsiteRoot = /var/www/null
UserWebsite = yes
UserDirectory = html_archive
}
is a "Syntax error in vhosts//archive.conf on line 5.".
Is there a known workaround?
I can recompile with a patch, if necessary.