Micooz Lee
Micooz Lee
**nginx** requires ssl certificates(**server.crt** and **server.key**) which should be placed in `nginx/ca`. Check out [here](https://github.com/micooz/docker-lnmp/blob/master/nginx/conf.d/default.conf#L4). Have you had placed those files correctly in `nginx/ca`? Or if you want to disable...
The docker daemon needs to do a lot of things which really **require** root rights. > Running containers (and applications) with Docker implies running the Docker daemon. This daemon currently...
**Ubuntu 14.04.4 LTS** Run `docker-compose up` without sudo gets: ``` ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running? ``` `docker-compose` is a set of python scripts,...
The examples in the README assume that your are in production, usually **Linux**, not OS X. Are there any evidence to prove that the user **is not** root in the...
If you think it's annoying, just remove **eslint-loader** in **webpack/common.config.js**: ```js { test: /\.js$/, exclude: /node_modules/, use: ['babel-loader' /* , 'eslint-loader' */] }, ``` However, display eslint errors in development...
Yep, I used to put it to my plan list, but I think those obfuscators are designed too disgusting. It's better to [implement](https://github.com/blinksocks/blinksocks/tree/master/docs/development/custom-preset) them as **thirdparty libraries** without putting them...
I have no idea about this, but I found a document of tproxy which could help: http://lxr.linux.no/linux+v3.10/Documentation/networking/tproxy.txt#L44
I didn't understand what you mean, can you draw a simple picture to explain?
Server cannot establish a TCP/TLS connection to client obviously. What's your scenario?
So you want to access private services on Site B from Site A via TLS+Mux. TLS is a pure transport layer without ability to route payload to different targets, but...