I got error but could not be solved. I think it is not strange error, but I tried all the ways and this is the final step to post to group and need your help!
+ Installed Drupal 8 at /home/
mydomain.com/www+ Install simplesamlphp by following manual:
https://simplesamlphp.org/docs/stable/simplesamlphp-install - Installed dir: /home/
mydomain.com/simplesaml - ln -s /home/
mydomain.com/simplesaml/www /home/
mydomain.com/www/simplesaml - edit /home/
mydomain.com/simplesaml/config/config.php: 'baseurlpath' => '
http://mydomain.com/simplesaml/'
- add nginx configuration for simplesaml.conf and add include simplesaml.conf at the end of mydomain.com.conf
location ~ ^/simplesaml {
alias /home/ladressa.com/simplesamlphp/www/;
location ~ ^/simplesaml/(.+\.php.*)$ {
fastcgi_split_path_info ^(.+\/module\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_pass php_fpm;
}
}
- fastcgi_params configuration file is original default.
RESULTS:
I checked the error.log but there is nothing about 403 forbidden error.
I tried to turn off SELinux (I don't like that) and restart server + nginx, but the same error, and no error log.
Is there any problem with my configuration?
If you have any experience about Drupal and simplesamlphp, please help and share with me.
Thanks so much!
HQ