SSL&Nginx
liulf642161679
这个作者很懒,什么都没留下…
展开
-
nginx 启动不起来就手动指定下他的nginx.conf
ssl 过期了; 用certbot-auto 重新生成了个,结果启动nginx 启动不起来,所以写了这个脚本#!/bin/bash# 停止nginx/usr/local/nginx/sbin/nginx -s stop# 续签# --force-renew 强制更新/home/gly/certbot-auto renew --force-renew# 启动nginx/usr/local/ngin...原创 2018-04-24 14:06:25 · 3368 阅读 · 0 评论 -
java.lang.OutOfMemoryError: PermGen space有效解决方法
Catalina 添加JAVA_OPTS='-Xms1024m -Xmx2048m -XX:PermSize=1024m -XX:MaxPermSize=1024m -XX:-UseSplitVerifier'原创 2018-11-20 14:24:18 · 830 阅读 · 0 评论 -
解决nginx 允许跨域问题
//bb.xx.cnlocation / { add_header Access-Control-Allow-Origin "http://aa.xx.cn"; add_header Access-Control-Allow-Headers X-Requested-With; add_header ...原创 2018-12-13 12:21:44 · 3764 阅读 · 0 评论 -
免费SSL证书Let's Encrypt(certbot)安装使用教程
1.教程https://www.vpser.net/build/letsencrypt-certbot.htmlhttps://segmentfault.com/a/1190000005797776http://www.tuicool.com/articles/ZZrAN322.官方文档https://certbot.eff.org/#centos6-nginxhttps://certbot.e...原创 2018-12-16 11:03:59 · 743 阅读 · 0 评论 -
nginx 重启命令
# 杀死所有nginx 进程killall -9 nginx# 检查nginx 配置文件/usr/sbin/nginx -c /etc/nginx/nginx.conf# 重启nginx /usr/sbin/nginx -s reload原创 2018-12-12 10:15:09 · 1081 阅读 · 0 评论 -
springboot 启动部署
#!/bin/shRESOURCE_NAME=oxueo-api-0.0.1-SNAPSHOT.jar tpid=`ps -ef|grep $RESOURCE_NAME|grep -v grep|grep -v kill|awk '{print $2}'`if [ ${tpid} ]; thenecho 'Stop Process...'kill -15 $tpidfisleep...原创 2019-01-26 11:03:38 · 371 阅读 · 0 评论