ssh port forwarding in practice
As a global company, it is very common that a server in one site needs to communicate with another server in another site. These days […]
Read More →As a global company, it is very common that a server in one site needs to communicate with another server in another site. These days […]
Read More →springboot can serve static content files, for example, html, js, css and image, for http request. By default, springboot searches the below directories for the […]
Read More →I explained why google chrome browser does not respect a certificate without Subject Alternative Name in my earlier post. I also showed how to create […]
Read More →nvm is an excellent tool that can be used to manage different versions of nodejs in a single OS. I am using nvm in my […]
Read More →I showed how to create a self-signed certificate using openssl command line in this post. However, after I created a self-signed certificate using the similar […]
Read More →Use the below command to create a self-signed certificate: openssl req -x509 -days 365 -nodes -newkey rsa:2048 -keyout tls.key -out tls.crt \ -subj “/C=CN/ST=Shandong/L=Qingdao/O=Nokia/OU=RD Team/CN=deskshell.com” […]
Read More →做Web前端开发离不开npm, 开发人员可以使用npm来管理项目的各种依赖包,公开的依赖包都被保存在一个统一的服务器上,它的访问地址为https://registry.npmjs.org。然而在国内访问这个地址时,有时比较慢,下载依赖包的过程中经常卡住。这里推荐两个国内的npm registry。从这两个registry下载package时,速度相对快很多。
Read More →