从 solo V3.2 升级到 V3.3 之后,出现一系列问题,所以在此吧所有配置做个备份保存。
1、升级成功后出现页面排版错乱的情况,后出现页面排版正常后,首页登录正常,点击文章等二级页面失败;
先看下 latke.properties 配置
serverScheme=http
serverHost=www.cjzshilong.cn
serverPort=
//注意这里之前是8080,不得已改成空
#### Cookie ####
cookieName=solo
cookieSecret=Beyond
#### Runtime Mode ####
#runtimeMode=DEVELOPMENT
runtimeMode=PRODUCTION
再看下 local.properties 配置
#### MySQL runtime ####
runtimeDatabase=MYSQL
jdbc.username=root
jdbc.password=xxxxxxx
jdbc.driver=com.mysql.jdbc.Driver
jdbc.URL=jdbc:mysql://39.97.161.115:3306/solo?useUnicode=yes&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC
# The minConnCnt MUST larger or equal to 3
jdbc.minConnCnt=2
jdbc.maxConnCnt=4
jdbc.maxWait=1000
jdbc.removeAbandoned=false
# The specific table name prefix
jdbc.tablePrefix=b3_solo
2、二级页面能打开的情况下得加上 8080,不得已把上述 latke.properties 中的 server_port 改为空。然后出现加 www 域名的情况可以正常使用,不加 www 不能正常使用。这时不得已再做一次 301 跳转重定向,在此我申明,不加 www 的域名已经正常解析并且能访问首页的,说明跳转只是临时解决到现在没找到问题的根源。
先把 nginx 配置贴上来吧
重定向配置:
server {
listen 80;
server_name www.cjzshilong.cn cjzshilong.cn;
if ($host != 'www.cjzshilong.cn'){
rewrite ^/(.*)$ http://www.cjzshilong.cn/$1 permanent;
}
$host 该变量的值等于请求头中 Host 的值。如果 Host 无效时,那么就是处理该请求的 server 的名称。
permanent: 永久性重定向。请求日志中的状态码为 301
nginx 对文档检测比较严格,所以 if ( host != 'www.cjzshilong.cn' ) 这些代码之间需要有空格隔开,不然会报错:unknown directive “if(host!=' ')”
3、nginx 全配置
server {
server_name www.cjzshilong.cn cjzshilong.cn;
listen 80;
charset utf-8;
error_page 404 /404.html;
error_page 500 502 503 504 /500.html;
access_log /mnt/access.log;
error_log /mnt/error.log;
location / {
proxy_pass http://127.0.0.1:8080/solo/;
rewrite ^/(.*)$ http://www.cjzshilong.cn:8080/solo/$1 permanent;
}
}
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于