====== Omnibus Website ====== Login via ssh as follows: ssh uname@login.uni-freiburg.de cd /home/omnibus/uname URL will be http://omnibus.uni-freiburg.de/~uname More information can be found here: [[http://www.wiki.uni-freiburg.de/rz/doku.php?id=omnibus|RZ Wiki]] ===== Problem when logging into login ===== If your home directory on login.uni-freiburg.de cannot be found, don't despair! First execute the //kdestroy// command and then login in to login.uni-freiburg.de again. ====== Prevent Directory Listing ====== The default setting of the omnibus server has the directory listing option turned on. This means that the contents of a directory will be displayed in case there does not exist a default page in the directory (typically the "index.html" file). There are different possibilities to prevent this: - Just place a dummy "index.html" file in the directory and it will be displayed instead of the directory listing. - Create a file ".htacces" and insert the line Options -IndexesThis will disable the directory listing in the directory where this file is placed **and in all subdirectories**. If you therefore want this feature disabled on all your omnibus directories place it in the "public_html" folder. A ".htaccess" file in a subdirectory with the line Options +Indexes will again enable the feature. Browsing to a directory without an index.html will in this case throw an Error 403. - Create a file ".htacces" and insert the line IndexIgnore *This will ignore all files in the directory listing, hence, will give an empty list (and no access error). If you only want to exclude specific file types from the directory listing it wold look something like this IndexIgnore *jpg *tarAgain, this setting affects the directory where this file is placed **and all subdirectories**.