Skip to content

Commit

Permalink
fix nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
travierm committed Dec 29, 2024
1 parent b88c5ec commit a80bf1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .deploy/config/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ http {
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php-fpm.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_index index.php;
Expand Down Expand Up @@ -92,4 +92,4 @@ http {

# Include other server configs
include /etc/nginx/conf.d/*.conf;
}
}

0 comments on commit a80bf1a

Please sign in to comment.