* adam wilson <
adam.el...@gmail.com> [2014-01-21 14:15]:
> First of all let me say I had SimpleSAML working perfectly using Alias
> directives on my local machine.
>
> The website I am working on is on a Plesk shared hosting service and tricky
> to add the Alias directives, esp as atm its all on one live server.. my
> boss asked me to try get it working without, or with .htaccess
Knowing nothing about Plesk and what that offers: Do you have shell
access and does the filesystem support symbolic links? If so, you
could place a link to SSP's www folder inside the publicly available
web content.
user@host:~/public_html $ ls -d simplesaml
simplesaml -> /path/to/simplesamlphp/www
> So the folder structure is
>
> /simplesaml <- public
> /simplesamlphp <- private
Very confusing naming convention but your choice.
> 'baseurlpath' => 'simplesaml/',
> 'basedir' => '~/work/mysite/simplesamlphp/',
> 'certdir' => 'cert/',
> 'loggingdir' => 'log/',
> 'datadir' => 'data/'
You could try avoiding ~ to signyfy $HOME, with either a relative or
absolute path. Not sure this will make any difference.
-peter