Difference between revisions of "Web & Infrastructure Committee"

From FSCONS wiki
Jump to navigation Jump to search
(Created page with "= Server configuration = The server is configured using puppet and the configuration is stored in a git repository. If you have access to it, you can clone the repository like t...")
 
Line 4: Line 4:
  
 
     git clone gitosis@fscons.org:web/puppet.git
 
     git clone gitosis@fscons.org:web/puppet.git
 +
 +
== Wiki installation ==
 +
 +
The wiki is installed under <code>/srv/mediawiki</code>.
 +
The ConfirmEdit extension is enabled to protect from spam, with a modification:
 +
 +
    - define( "RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api" );
 +
    + define( "RECAPTCHA_API_SERVER", "https://www.google.com/recaptcha/api" );
 +
 +
(because apparently the extension cannot guess correctly that we are using ssl when used with fastcgi...)

Revision as of 17:58, 14 August 2013

Server configuration

The server is configured using puppet and the configuration is stored in a git repository. If you have access to it, you can clone the repository like this:

   git clone gitosis@fscons.org:web/puppet.git

Wiki installation

The wiki is installed under /srv/mediawiki. The ConfirmEdit extension is enabled to protect from spam, with a modification:

   - define( "RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api" );
   + define( "RECAPTCHA_API_SERVER", "https://www.google.com/recaptcha/api" );

(because apparently the extension cannot guess correctly that we are using ssl when used with fastcgi...)