making telnet secure using Nginx redirect options

2018-08-17 Thread Sudarshan Soma
Hi All, We have a traditional custom server which is based on telnet at port 9932. Can we make it secure by just using Nginx.conf setting. something like: location /mytelnet { grpc_pass telnet localhost 9932; } Assume telnet client is my own application, it can iniitate https

Re: WordPress multisite with root url as Laravel application

2018-08-17 Thread Danila Vershinin
Hi, Why not just create 2 server blocks, one for root domain and the other for WP multisite subdomains? As in: server { server_name example.com www.example.com ; … Laravel directives go here } server { server_name *.example.com

WordPress multisite with root url as Laravel application

2018-08-17 Thread conquistadorjd
I am running a wordpress multisite website with subdomain option. example.me is my main website https://one.example.me, https://two.example.me/two etc are the network websites. Now I am planning to have a small laravel application accessible at example.me. I tried using different combination but n

Re: keepalive not work with grpc

2018-08-17 Thread hunterqin
I used protobuf v310, grpc v181, nginx v1152 and v1140. The server is just same as the example async_server on grpc website. https://grpc.io/docs/tutorials/async/helloasync-cpp.html You can use it directly. https://github.com/grpc/grpc/blob/v1.14.1/examples/cpp/helloworld/greeter_async_server.cc