Unable to configure apache for wiki page

0
I have installed gitstack, its working fine. Thanks.  within the same server I have installed gitstack, I wanted to have a wiki page running as well. I have downloaded mediawki and configured apache httpd file by adding virtualhost as well. But still I am not able to run the wikipage. Any help will be highly appreciated.  
asked February 29, 2012

1 Answer

0
GitStack apache configuration file are located in :
C:\dev\gitstack\apache\conf\gitstack\
You need to create a new configuration file "mediawiki.conf" and add :

Alias /mediawiki "C:/mediawiki"
<Directory "C:/mediawiki">
Options Indexes FollowSymLinks MultiViews
Order Deny,Allow
Allow from all
DirectoryIndex index.php
</Directory>

Restart GitStack from the services panel.
Your mediawiki will be accessible from : http://serveraddress.com/mediawiki

VirtualHost are appropriated only if would like a bind a specific domain name to a web application. The Apache documentation provides multiple VirtualHost examples.

Your Answer

Please login to post questions.