Sample apache virtual host
From DLXS Documentation
(Difference between revisions)
(2 intermediate revisions not shown.) | |||
Line 1: | Line 1: | ||
- | + | [[DLXS Wiki|Main Page]] > [[Mounting Collections: Class-specific Steps]] > [[Mounting a Finding Aids Collection]] > [[Mounting the Collection Online]] > Sample apache virtual host | |
+ | <hr> | ||
+ | |||
+ | See also the file $DLXSROOT/bin/installer/config-examples/httpd.conf.dlxs in your installation of dlxs. | ||
+ | |||
+ | |||
<pre> | <pre> | ||
<VirtualHost 123.456.175.37:80> | <VirtualHost 123.456.175.37:80> | ||
Line 23: | Line 28: | ||
</VirtualHost> | </VirtualHost> | ||
</pre> | </pre> | ||
+ | |||
+ | [[#top|Top]] |
Current revision
Main Page > Mounting Collections: Class-specific Steps > Mounting a Finding Aids Collection > Mounting the Collection Online > Sample apache virtual host
See also the file $DLXSROOT/bin/installer/config-examples/httpd.conf.dlxs in your installation of dlxs.
<VirtualHost 123.456.175.37:80> ServerName foobar..umdl.umich.edu ServerAlias foobar foobar.foobar.umdl DocumentRoot /l1/foobar/web ScriptAlias /cgi/ /l1/foobar/cgi/ SetEnv DLXSROOT /l1/foobar SetEnv DLXSDATAROOT /l1 SetEnv DLPS_DEV my_usernamefoobar SetEnv REMOTE_USER my_username <Directory "/foobar/cgi/c/collmgr"> AuthName "DLXS collection management" AuthType Basic AuthUserFile conf/htpasswd.dlxs Require valid-user </Directory> </VirtualHost>