(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
# stream oriented kurento | |
# | |
# VERSION 4.4.3 | |
FROM ubuntu:14.04 | |
MAINTAINER Patxi Gortázar <[email protected]> | |
RUN apt-get update \ | |
&& apt-get -y dist-upgrade \ | |
&& apt-get install -y wget |
# configuration for the SSL | |
server { | |
# Set the ssl listener | |
listen 443 ssl; | |
server_name omni-chat.ru, www.omni-chat.ru, localhost; | |
# set ssl to on | |
ssl on; | |
# Specify the ssl certificates |
Hey! I saw this has been indexed by the search engines. It is a first draft of a post I ended up publishing on my blog at: Scaling PostgreSQL With Pgpool and PgBouncer
Thanks for stopping by!
# First configure reverse proxy before server, | |
# that will transfer WSS inbound traffic to unsecure local server, namely: | |
server { | |
# This is your reqular configuration for SSL connections to website | |
# Set port to listen ssl connections | |
listen 443 ssl; | |
# Set hosts names to handle | |
server_name example.com www.example.com | |
# Set sertificate configuration |
# Add to nginx.conf http section | |
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' close; | |
} |
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You under the Apache License, Version 2.0 | |
# (the "License"); you may not use this file except in compliance with | |
# the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
[ | |
{ | |
"Execution Time": 479344.31, | |
"Planning Time": 2.009, | |
"Plan": { | |
"Partial Mode": "Finalize", | |
"Temp Written Blocks": 16114, | |
"Node Type": "Aggregate", | |
"Strategy": "Sorted", | |
"Actual Total Time": 478954.944, |