Install SimpleSAMLphp on Windows Apache

I want to install SimpleSAMLphp in windows Apache / Xampp. Let me tell you what happened so far: 1. I downloaded the latest stable version from https://simplesamlphp.org/download and put the unpacked file in the Apache folder, that is, the C: \ Apache24 \ simplesamlphp directory contains the .json composer. I also downloaded the dependencies. 2. Now that I'm going to configure vhost as shown on the site 6. Configure the Apache partition as

<VirtualHost *:80>
        ServerName localhost
        DocumentRoot C:/Apache24/htdocs
</VirtualHost>

<VirtualHost *:80>
        ServerName service.example.com
        DocumentRoot C:/Apache24/service.example.com

        Alias /simplesaml C:/Apache24/simplesamlphp/www
</VirtualHost>
  1. Changed configuration file.

Now the problem: I can not open Alias ​​in the browser. And running httpd.exe in the browser shows that the error in example.com does not exist.

Need help if someone installed SimpleSAMLphp on Windows, share your steps and vhosting settings. This would help many nations.

.

+4
1

, ... vhost, Windows Xampp, /xampp/apache/conf/extra/httpd -xampp.conf. /phpmyadmin:

Alias /simplesaml "C:/xampp/simplesamlphp/www"
<Directory "C:/xampp/simplesamlphp/www">
        AllowOverride AuthConfig
        Require all granted
</Directory>

http://localhost/simplesaml/ , ...

Windows xampp, simplesaml..., .

+1

All Articles