# Example httpd.conf file for TWiki. # # You are recommended to take a copy of this file and edit # the paths to match your installation. Then add: # include "/home/httpd/twiki/twiki_httpd.conf" # to the end of your main httpd.conf file. # #Mod_perl preloading PerlSwitches -T Perlrequire /usr/local/apache2/conf/dakar-perl-uses.pl # The first parameter will be part of the URL to your installation e.g. # http://my.co.uk/twiki/bin/view/... # The second parameter must point to the physical path on your disc. Be # careful not to lose any trailing /'s. #### Change the _second_ path to match your local installation ScriptAlias /dakar/bin "/usr/local/apache2/dakar/bin" # This defines a url that points to the root of the twiki installation. It is # used to access files in the pub directory (attachments etc) # It must come _after_ the ScriptAlias. #### Change the path to match your local installation Alias /dakar "/usr/local/apache2/dakar" # This specifies the options on the TWiki scripts directory. The ExecCGI # and SetHandler tell apache that it contains scripts. "Allow from all" # lets any IP address access this URL. #### Change the path to match your local installation # Password file for TWiki users AuthUserFile /usr/local/apache2/dakar/data/.htpasswd AuthName 'Enter your WikiName: (First name and last name, no space, no dots, capitalized, e.g. JohnSmith). Cancel to register if you do not have one.' AuthType Basic # File to return on access control error (e.g. wrong password) # By convention this is the TWikiRegistration page, that allows users # to register with the TWiki. Apache requires this to be a *local* path. ErrorDocument 401 /usr/local/apache2/dakar/bin/view/TWiki/TWikiRegistration SetHandler cgi-script Order deny,allow Deny from all Allow from 192.168.1.4 192.168.1.9 127.0.0.1 require valid-user Options +ExecCGI +FollowSymLinks SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlSendHeader On PerlOptions +ParseHeaders Options +ExecCGI +FollowSymLinks SetHandler cgi-script Allow from all # This sets the options on the pub directory, which contains attachments and # other files like CSS stylesheets and icons. AllowOverride None stops a # user installing a .htaccess file that overrides these options. # Note that files in pub are *not* protected by TWiki Access Controls, # so if you want to control access to files attached to topics, you may # need to add your own .htaccess files to subdirectories of pub. See the # Apache documentation on .htaccess for more info. #### Change the path to match your local installation Options FollowSymLinks +Includes AllowOverride None Allow from all # Security note: All other directories should be set so # that they are *not* visible as URLs, so we set them as =deny from all=. #### Change the paths to match your local installation deny from all deny from all deny from all deny from all