1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 05:02:40 +00:00

Fix socket path

This commit is contained in:
J. King 2024-01-09 18:13:36 -05:00
parent 2670ed4ab8
commit 1f9beb85a5
2 changed files with 2 additions and 2 deletions

View file

@ -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/"
ProxyPass "unix:/run/php-fpm/arsse.sock|fcgi://localhost/usr/share/webapps/arsse/"

View file

@ -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;