Skip to content
Snippets Groups Projects
Unverified Commit 546f988f authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Update Nginx docs

parent 06375d51
No related branches found
No related tags found
No related merge requests found
...@@ -206,19 +206,18 @@ look like this: ...@@ -206,19 +206,18 @@ look like this:
ssl_protocols TLSv1.1 TLSv1.2; ssl_protocols TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5; ssl_ciphers HIGH:!aNULL:!MD5;
location / { location ^~ /simplesaml {
root /var/simplesamlphp/www; alias /var/simplesamlphp/www;
index index.php;
} location ~ \.php(/|$) {
root /var/simplesamlphp/www;
location ~ \.php { fastcgi_pass 127.0.0.1:9000;
root /var/simplesamlphp/www; fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php; fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_split_path_info ^(.+?\.php)(/.*)$; include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_path_info; }
include fastcgi_params;
} }
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment