为什么安装的时候,是空白的,什么都没有
比如, 安装网址是 http://xxx.com/install/
打开以后看到的是一片空白,,只有浏览器标签上面的图标出来
其他都是一片空白
nginx 配置是在网上找的这个,看了nginx日志,没有错误
不知道为什么,不能安装
配置文件也上不了,说超过了60000字节
搞不懂,然后下面又说没有超过
server {
listen 80;
listen [::]:80;
root /var/www/carbon;
index index.php index.html index.htm index.nginx-debian.html;
server_name xxx.com;
# nginx configuration
error_page 404 /404.php;
# rewrite
location / {
try_files $uri $uri/ /index.php?$query_string;
}
# Git folder vulnerability
location /.git {
deny all;
return 403;
}
location /controller {
deny all;
return 403;
}
location /docker_resources {
deny all;
return 403;
}
location /library {
deny all;
return 403;
}
location /service {
deny all;
return 403;
}
location /view {
deny all;
return 403;
}
location ~ /\.ht {
deny all;
return 403;
}
location ~ \.php$ {
#include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
# fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
登录后方可回帖
奇怪,为什么说发表的时候不能超过多少字符,而明明下面的字符又没有超过
真是
这里是nginx的配置大家看看哪里有问题
当前已输入1147个字符, 您还可以输入58853个字符。
帖子内容长度不能超过60000个字节