This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$nginx -V |& sed 's/ --/\n/g' nginx version: nginx/1.9.9 | |
built by gcc 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) | |
built with OpenSSL 1.0.1f 6 Jan 2014 | |
TLS SNI support enabled | |
configure arguments: | |
prefix=/etc/nginx | |
sbin-path=/usr/sbin/nginx | |
conf-path=/etc/nginx/nginx.conf | |
error-log-path=/var/log/nginx/error.log | |
http-log-path=/var/log/nginx/access.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stream { | |
upstream deis { | |
server deis-elb-01.aya.staging:2222; | |
} | |
server { | |
listen 2222; | |
# resolve ELB's hostname to IP | |
mruby_stream_code ' |
OlderNewer