部署出现500错误已解决 悬赏5积分
web服务器是nginx
按照使用手册方式进行,尝试了删除access文件,仍然有错。
其他查看和尝试:
nginx错误日志中无信息, php-fpm错误日志也无;
文件及子目录所属nginx:nginx,权限改777,也无效;
还有其他方法么?
禅道版本:禅道开源版 20.7.1
安装包类型:Linux安装包
操作系统:CentOS
客户端浏览器:Chrome
孔令茂
2024-10-21 13:21:14
源码部署出现这个错误的可能性比较复杂。大概率还是 nginx 配置文件的问题。 以下是一个 nginx 配置文件的示例,看能否帮助到你。 server { listen 80; root /mnt/mydisk/sites/test/open/206/www; autoindex on; index index.html index.php; server_name 206.klm.oop.cc; location / { index index.htm index.html index.php; try_files $uri /index.php$uri; if (!-e $request_filename) { #一级目录 rewrite ^/(.*)$ /index.php/$1 last; } } #pathinfo设置 location ~ \.php($|/) { fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; fastcgi_index index.php; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } 另外,有禅道使用问题,也可以联系客户经理,邀请您加入技术交流群沟通,即时性会更好一些。
回复
|