2017-08-20 03:56:32 +00:00
|
|
|
fastcgi_pass php; # PHP is assumed to already be configured for FastCGI operation
|
|
|
|
fastcgi_pass_header Authorization; # required if the Arsse is to perform its own HTTP authentication
|
|
|
|
fastcgi_pass_request_body on;
|
|
|
|
fastcgi_pass_request_headers on;
|
|
|
|
fastcgi_intercept_errors off;
|
|
|
|
fastcgi_buffering off;
|
|
|
|
fastcgi_param SCRIPT_FILENAME /usr/share/arsse/arsse.php;
|
|
|
|
fastcgi_param REQUEST_METHOD $request_method;
|
|
|
|
fastcgi_param CONTENT_TYPE $content_type;
|
|
|
|
fastcgi_param CONTENT_LENGTH $content_length;
|
2019-02-19 13:46:17 +00:00
|
|
|
fastcgi_param REQUEST_URI $uri;
|
2017-09-30 16:05:57 +00:00
|
|
|
fastcgi_param HTTPS $https if_not_empty;
|
2019-02-19 13:46:17 +00:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|