From 1f9beb85a542152d3da12363c3e19fd064f93b47 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Tue, 9 Jan 2024 18:13:36 -0500 Subject: [PATCH] Fix socket path --- dist/arch/apache-arsse-fcgi.conf | 2 +- dist/arch/nginx-arsse-fcgi.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/arch/apache-arsse-fcgi.conf b/dist/arch/apache-arsse-fcgi.conf index 7b3f60e..59562c6 100644 --- a/dist/arch/apache-arsse-fcgi.conf +++ b/dist/arch/apache-arsse-fcgi.conf @@ -3,4 +3,4 @@ ProxyFCGISetEnvIf "true" SCRIPT_FILENAME "/usr/share/webap ProxyFCGISetEnvIf "-n req('Authorization')" HTTP_AUTHORIZATION "%{req:Authorization}" # Modify the below line to begin with "unix:/run/php-fpm-legacy/" if using the php-legacy package -ProxyPass "unix:/run/php/arsse.sock|fcgi://localhost/usr/share/webapps/arsse/" \ No newline at end of file +ProxyPass "unix:/run/php-fpm/arsse.sock|fcgi://localhost/usr/share/webapps/arsse/" \ No newline at end of file diff --git a/dist/arch/nginx-arsse-fcgi.conf b/dist/arch/nginx-arsse-fcgi.conf index 04b6941..352168b 100644 --- a/dist/arch/nginx-arsse-fcgi.conf +++ b/dist/arch/nginx-arsse-fcgi.conf @@ -13,4 +13,4 @@ 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 -fastcgi_pass unix:/run/php/arsse.sock; +fastcgi_pass unix:/run/php-fpm/arsse.sock;