
Nginx
前端技术栈
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx 配置 解决 vue history模式下空白 ,以及SSL证书安装
原文地址 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connectio...原创 2020-04-03 14:44:20 · 688 阅读 · 0 评论 -
nginx报错 the "ssl" directive is deprecated, use the "listen ... ssl"
nginx报错 the “ssl” directive is deprecated, use the “listen … ssl” 如果使用listen 443 ssl,删除ssl on就行了。 改成 server { listen 443 ssl; } 体验前端面试题小程序 ...原创 2020-03-31 16:34:41 · 668 阅读 · 0 评论