We are trying to deploy a Trigger.io app both to the web and to mobile.
The app works when we deploy to heroku, and when we run it on the server with direct external access (domain.com:3000 etc).
We are hoping to run multiple servers on local ip/ports and publish them through NGINX with reverse proxies to each local server, As this will allow us to fit it in our current NGINX environment and share the same IP/Ports and SSL Certificates.
Find below the issue logs and the NGINX config files relevent to the vhost. Our issue is when the app tries to POST data, the upstream times out. This indicates that the proxy is working as all static data is proxied and delivered through NGINX to the client, but only POST times out.
NGinx Config:
upstream backend {
server 127.0.0.1:3000;
}
server {
listen public IP:80;
server_name domain.com;
return 301 https://$server_name$request_uri;
}
server {
listen public IP:443;
server_name domain.com;
client_max_body_size 20M;
error_log /var/log/nginx/error.log info;
ssl on;
ssl_certificate /etc/nginx/ssl.crt/wildcard_tp.pem;
ssl_certificate_key /etc/nginx/ssl.key/wildcard_tp.key;
ssl_session_timeout 5m;
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL;
ssl_prefer_server_ciphers on;
gzip on;
gzip_min_length 1000;
gzip_comp_level 6;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/xml;
gzip_types text/xml image/x-icon image/gif;
gzip_types text/css;
gzip_types application/javascript;
gzip_types application/x-javascript;
gzip_disable "MSIE [1-6]\.";
add_header "X-UA-Compatible" "IE=Edge,chrome=1";
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://backend;
proxy_redirect off;
}
}
The relevant web.js NodeJS/ExpressJS code created by
forge run web
var express = require('express');
var http = require('http');
var https = require('https');
var Cookie = require('./cookie').Cookie;
var app = express.createServer();
app.set('trust proxy', true);
app.use(express.logger('default'));
// app.use(express.logger());
app.use(express.bodyParser());
app.use(app.router);
app.use(express.static(__dirname + '/src'));
// Killswitch for local toolchain
var debug = !!process.env.FORGE_DEBUG;
if (debug) {
app.post('/_forge/kill/', function (request, response) {
response.end();
process.exit(0);
});
}
// Default page is index.html
app.get('/', function(request, response) {
response.sendfile(__dirname +'/src/index.html');
});
// Forge static files
app.get('/_forge/:s', function (request, response) {
response.sendfile(__dirname +'/forge/'+request.params.s);
});
// Ajax request proxy
app.post(/^\/_forge\/proxy\//, function(request, response) {
// Add an X header?
// Check referrer?
if (!request.body.url) {
response.statusCode = 404;
response.end();
return;
}
var url = require('url').parse(request.body.url);
if ((url.protocol != "http:" && url.protocol != "https:") || !url.hostname) {
response.statusCode = 404;
response.end();
return;
}
// Unmunge cookies on user->proxy->url
Object.keys(request.headers).forEach(function (header) {
if (header.toLowerCase() == 'cookie') {
var cookies = [];
request.headers[header].toString().split(';').forEach(function (cookieStr) {
try {
var cookie = new Cookie().parse(cookieStr);
var data = JSON.parse(cookie.value);
cookie.value = data.value;
cookie.path = data.path;
cookie.domain = data.domain;
// Check to see if this cookie should be sent with this request
if (cookie.collidesWith({domain: url.hostname, path: url.pathname})) {
delete cookie.path;
delete cookie.domain;
cookies.push(cookie.toString());
}
} catch (e) {
// Ignore non-munged cookies
}
});
request.body.headers['cookie'] = cookies.join("; ");
}
});
if (!request.body.headers['x-forwarded-for']) {
request.body.headers['x-forwarded-for'] = request.connection.remoteAddress + (request.headers['x-forwarded-for'] ? ', ' + request.headers['x-forwarded-for'] : '');
}
if (!request.body.headers['user-agent']) {
request.body.headers['user-agent'] = request.headers['user-agent'];
}
var options = {
host: url.hostname,
port: url.port || (url.protocol == "http:" ? 80 : 443),
path: url.pathname + (url.search || ''),
method: request.body.type || 'GET',
headers: request.body.headers || {}
};
var handler = (url.protocol == "http:" ? http : https)
var req = handler.request(options, function(res) {
response.statusCode = res.statusCode;
Object.keys(res.headers).forEach(function (header) {
if (header.toLowerCase() == 'set-cookie') {
// broken by commas in cookie values
// var cookies = res.headers[header].toString().split(',');
var cookies = res.headers[header].toString().split('[^\s],[^\s]');
cookies.forEach(function (cookieStr) {
// Munge cookies on url->proxy->user
var cookie = new Cookie().parse(cookieStr);
cookie.value = JSON.stringify({
value: cookie.value,
domain: cookie.domain || url.hostname,
path: cookie.path
});
cookie.path = '/_forge/proxy/'+(cookie.domain || url.hostname).split("").reverse().join("").replace(/\./g, "/");
delete cookie.domain;
response.setHeader("Set-Cookie", cookie.toString());
});
} else {
response.setHeader(header, res.headers[header]);
}
});
res.setEncoding('utf8');
res.on('data', function (chunk) {
response.write(chunk);
});
res.on('end', function () {
response.end();
});
});
if (request.body.type == 'GET') {
req.end();
} else {
req.end(request.body.data);
}
});
var port = process.env.PORT || 3000;
app.listen(port, '127.0.0.1', function() {
console.log("Listening on " + port);
});
process.on('uncaughtException', function (err) {
// Don't allow uncaught exceptions to take down the server
console.log(err);
});
And finally, the issues being logged, if any:
Nginx Logs:
2013/01/31 11:52:25 [info] 1425#0: *378108 client closed prematurely connection, so upstream connection is closed too while reading upstream, client: <clientIP>, server: domain.com, request: "POST /_forge/proxy/moc/laboltgniophcuot/ved-wkj/ HTTP/1.1", upstream: "http://127.0.0.1:3000/_forge/proxy/moc/laboltgniophcuot/ved-wkj/", host: "domain.com", referrer: "https://domain.com/"
NodeJS Logs:
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET / HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /css/sass/css/fonts.css HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /css/sass/css/style.css HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /css/font-awesome.min.css HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /js/all.js HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /js/app-ck.js HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /img/logo.png HTTP/1.0" 304 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "GET /img/l/apple-touch-icon.png HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
127.0.0.1 - - [Thu, 31 Jan 2013 01:06:39 GMT] "POST /_forge/proxy/moc/labolgtniophcuot/ved-wkj/ HTTP/1.0" 200 - "https://domain.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17"
Thanks