https://cuiqingcai.com/5445.html 安装 nginx 找到配置文件 find / -name nginx.conf 修改 http { server { listen 6801; location / { proxy_pass http://127.0.0.1:6800 ...
分类:
其他好文 时间:
2020-02-12 11:08:58
阅读次数:
210
Nginx: 1.安装nginx yum源 rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 2.yum install nginx -y 3.mv ...
分类:
其他好文 时间:
2020-02-12 00:24:02
阅读次数:
74
参考:https://lequ7.com/2019/01/16/javascript/React-zu-jian-xie-zai-lu-you-tiao-zhuan-ye-mian-guan-bi-shua-xin-zhi-qian-jin-xing-ti-shi/ import {Prompt} ...
分类:
其他好文 时间:
2020-02-11 14:44:47
阅读次数:
164
https://www.cnblogs.com/inuex/p/4299690.html What I've done is go to this location in regedit: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services ...
分类:
其他好文 时间:
2020-02-11 10:01:22
阅读次数:
82
Nginx的配置语法灵活,可控制度非常高。在0.7以后的版本中加入了一个try_files指令,配合命名location,可以部分替代原本常用的rewrite配置方式,提高解析效率。 try_files指令说明 try_files指令语法:try_files file ... uri 或 try_f ...
分类:
其他好文 时间:
2020-02-11 00:25:02
阅读次数:
81
1.Nginx解决服务器宕机问题,Nginx配置服务器宕机策略,如果服务器宕机,会找下一台机器进行访问 配置nginx.cfg配置文件,在映射拦截地址中加入代理地址响应方案 location / { proxy_connect_timeout 1; proxy_send_timeout 1; pro ...
分类:
其他好文 时间:
2020-02-10 21:04:14
阅读次数:
87
解决服务器宕机 配置nginx.cfg配置文件,在映射拦截地址中加入代理地址响应方案 location / { proxy_connect_timeout 1; proxy_send_timeout 1; proxy_read_timeout 1; proxy_pass http://backser ...
分类:
其他好文 时间:
2020-02-10 18:31:24
阅读次数:
130
Nginx解决服务器宕机问题,Nginx配置服务器宕机策略,如果服务器宕机,会找下一台机器进行访问 配置nginx.cfg配置文件,在映射拦截地址中加入代理地址响应方案 location / { #秒为单位 proxy_connect_timeout 1; proxy_send_timeout 1; ...
分类:
其他好文 时间:
2020-02-10 18:17:36
阅读次数:
82
javascript:(function(){document.cookie='SPLOGIN=YES; path=/;';var href=window.location.href;if(href.indexOf('.cgi') 1 || href.indexOf('?')!=-1){window ...
分类:
其他好文 时间:
2020-02-10 15:18:20
阅读次数:
68
nginx连接PHP mysql5.7、 php7编译安装见https://www.cnblogs.com/wengshaohang/p/12287676.html 下载 Nginx 源码包 # wget http://nginx.org/download/nginx-1.12.2.tar.gz 创 ...
分类:
Web程序 时间:
2020-02-09 18:38:28
阅读次数:
95