00595: PmWiki over SSL

Summary: PmWiki over SSL
Created: 2005-11-15 10:39
Status: Closed - added for 2.2.0-beta18
Category: Feature
From: Hoogi?
Assigned:
Priority: 4
Version:
OS:

Description: Need to run PmWiki secure (over SSL). All links should be in the Form https://... Of course one should install such a wiki in a password secured directory with .htaccess authentication. Needed eg. for an internal project documentation.


This capability already exists -- simply set values for $ScriptUrl and $PubDirUrl in a local customization file:

    $ScriptUrl = 'https://www.example.com/pmwiki/pmwiki.php';
    $PubDirUrl = 'https://www.example.com/pmwiki/pub';

--Pm


I think this is a really bad behaviour. Why using absolute paths? I would like a configuration option like

    $ForceSecureMode = [yes|no]

Hoogi