电光石火-穿越时空电光石火-穿越时空


最新发布

html

js判断方法是否存在

似水的流年 阅读(1242) 评论(0)

if(typeof yourfunctionname === 'function'){ //存在且是function } else{ //不存在或不是function }或者typeof yourfun...

服务器

ssl配置websocket

似水的流年 阅读(1433) 评论(0)

location /wsendpoint{     proxy_pass http://127.0.0.1/wsendpoint;  #实际ws服务器地址     proxy_http_version 1.1;   ...

服务器

nginx配置SSL证书

似水的流年 阅读(1494) 评论(0)

使用vim打开配置文件vim /etc/nginx/nginx.confhttp{     #http节点中可以添加多个server节点     server{         #监听443端口         li...

服务器

centos安装nginx

似水的流年 阅读(1378) 评论(0)

1.安装gcc gcc是用来编译下载下来的nginx源码  yum install gcc-c++2、安装pcre和pcre-devel    PCRE(Perl Compatible Regular Express...