# # apache2 site config for the UCW examples to be used with mod_lisp # # Sets up 3 applications at these url-prefixes: # / # /shared-counter # /l10n NameVirtualHost * ServerAdmin webmaster@localhost Options FollowSymLinks AllowOverride None # # redirect requests matching the specified regex to mod_lisp # LispServer 127.0.0.1 3000 ucw SetHandler lisp-handler RedirectMatch ^/l10n$ /l10n/ RedirectMatch ^/shared-counter$ /shared-counter/ # # map the www-root's # AliasMatch ^/(|shared-counter/|l10n/)(ucw|dojo)/(.*) /home/ati/workspace/ucw/wwwroot/$2/$3 AllowOverride None Options Indexes FollowSymLinks Order allow,deny allow from all # # disable mod_lisp for the www-root's # SetHandler none ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On