2023-12-22 18:27:02 +00:00
|
|
|
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 REQUEST_METHOD $request_method;
|
|
|
|
fastcgi_param CONTENT_TYPE $content_type;
|
|
|
|
fastcgi_param CONTENT_LENGTH $content_length;
|
|
|
|
fastcgi_param REQUEST_URI $uri;
|
|
|
|
fastcgi_param QUERY_STRING $query_string;
|
|
|
|
fastcgi_param HTTPS $https if_not_empty;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param SCRIPT_FILENAME /usr/share/webapps/arsse/arsse.php;
|
|
|
|
|
|
|
|
# Modify the below line to begin with "/run/php-fpm-legacy/" if using the php-legacy package
|
2024-01-09 23:13:36 +00:00
|
|
|
fastcgi_pass unix:/run/php-fpm/arsse.sock;
|