nginx
qq_14932665
这个作者很懒,什么都没留下…
展开
-
nginx location 详解
参考1 参考2原创 2019-10-12 10:22:54 · 105 阅读 · 0 评论 -
nginx: 400 Bad Request | The plain HTTP request was sent to HTTPS port
参考官方文档解决如下: server { listen 80; server_name localhost; root html; index index.html index.htm; listen 443 ssl; #注意这里 #ssl on; ssl_certificate cert/2145251342...转载 2019-10-12 09:41:01 · 996 阅读 · 0 评论 -
nginx 加入系统环境变量 可全局使用命令
vim /etc/profile 最后加入: export NGINX_HOME=/usr/local/nginx export PATH=PATH:PATH:PATH:NGINX_HOME/sbin 保存, 执行 source /etc/profile ,使配置文件生效。原创 2019-10-11 14:17:18 · 863 阅读 · 0 评论