Tomcat -> Iframe -> NodeJs .. SSLSSL certificate rejected trying to access GitHub over HTTPS behind firewallHow can I update NodeJS and NPM to the next versions?Tomcat 6 Ssl and Form authentication side by sideWildcard SSL certificate for Tomcat and Apache which both on port 443accessing port 8443 with http in tomcatARR proxy to tomcat with SSL forcedNodeJS Express SSL not working with Bitnami EC2 InstanceSSL on Tomcat 7 on Azure VMUse same SSL certificate for Tomcat and NginxApache SSL Config With NodeJS Proxy Pass Fails to Start
Were any external disk drives stacked vertically?
Can one be a co-translator of a book, if he does not know the language that the book is translated into?
90's TV series where a boy goes to another dimension through portal near power lines
What mechanic is there to disable a threat instead of killing it?
Arrow those variables!
Did Shadowfax go to Valinor?
Do I have a twin with permutated remainders?
How can I fix/modify my tub/shower combo so the water comes out of the showerhead?
Facing a paradox: Earnshaw's theorem in one dimension
Can I ask the recruiters in my resume to put the reason why I am rejected?
What is the most common color to indicate the input-field is disabled?
Is it possible to run Internet Explorer on OS X El Capitan?
Western buddy movie with a supernatural twist where a woman turns into an eagle at the end
Today is the Center
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
What killed these X2 caps?
What to put in ESTA if staying in US for a few days before going on to Canada
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Alternative to sending password over mail?
Why is consensus so controversial in Britain?
Is the Joker left-handed?
I would say: "You are another teacher", but she is a woman and I am a man
Doing something right before you need it - expression for this?
Why does Kotter return in Welcome Back Kotter?
Tomcat -> Iframe -> NodeJs .. SSL
SSL certificate rejected trying to access GitHub over HTTPS behind firewallHow can I update NodeJS and NPM to the next versions?Tomcat 6 Ssl and Form authentication side by sideWildcard SSL certificate for Tomcat and Apache which both on port 443accessing port 8443 with http in tomcatARR proxy to tomcat with SSL forcedNodeJS Express SSL not working with Bitnami EC2 InstanceSSL on Tomcat 7 on Azure VMUse same SSL certificate for Tomcat and NginxApache SSL Config With NodeJS Proxy Pass Fails to Start
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have the following achitecture:
1) Tomcat-Server running on Port 8080
When URL is called, Tomcat delivers a login-page and handles the login.
2) On successfull login, Tomcat delivers a iframe with NodeJs-app in it, which runs on the same machine but on Port 3000
now I need to make this reachable with HTTPS, but I have a serious understanding problem. I already got the key/cert installed and Tomcat is reachable via modjk .. until here it is working fine.
my nodejs-app looks like this:
var http = require('http');
var https = require('https');
var fs = require('fs');
var app = require('./app');
var ws = require('ws');
var config = require('./config/config');
var cfg = config.getCfg('host');
var httpsOptions =
key: fs.readFileSync('ssl/mycert.com.key'),
cert: fs.readFileSync('ssl/mycert.com.crt')
;
// if called with HTTP
if(req.connection.encrypted == 'undefined')
var server = http.createServer(app.handleRequest).listen(cfg.nodePort, function ()
console.log('Server running on Port ' + cfg.nodePort);
);
// if called with HTTPS
else
var server = https.createServer(httpsOptions, app.handleRequest).listen(443, function ()
console.log('Server running on Port 443');
);
// WEBSOCKET
var wsServer = new ws.Server(server);
wsServer.on('connection', socket =>
// on message from client, call function
socket.on('message', message =>
console.log('WS from template <-- ', message);
var wsIn = JSON.parse(message);
eval(app[wsIn.action])(wsIn.param, socket);
);
);
this should work.. I think.. I can't test it because when I do node server.js
, I get a error-msg that Port 443 is already in use.
Error: listen EADDRINUSE: address already in use :::443
now I am really confused :( .. how would one get this managed?
node.js ubuntu ssl tomcat https
add a comment |
I have the following achitecture:
1) Tomcat-Server running on Port 8080
When URL is called, Tomcat delivers a login-page and handles the login.
2) On successfull login, Tomcat delivers a iframe with NodeJs-app in it, which runs on the same machine but on Port 3000
now I need to make this reachable with HTTPS, but I have a serious understanding problem. I already got the key/cert installed and Tomcat is reachable via modjk .. until here it is working fine.
my nodejs-app looks like this:
var http = require('http');
var https = require('https');
var fs = require('fs');
var app = require('./app');
var ws = require('ws');
var config = require('./config/config');
var cfg = config.getCfg('host');
var httpsOptions =
key: fs.readFileSync('ssl/mycert.com.key'),
cert: fs.readFileSync('ssl/mycert.com.crt')
;
// if called with HTTP
if(req.connection.encrypted == 'undefined')
var server = http.createServer(app.handleRequest).listen(cfg.nodePort, function ()
console.log('Server running on Port ' + cfg.nodePort);
);
// if called with HTTPS
else
var server = https.createServer(httpsOptions, app.handleRequest).listen(443, function ()
console.log('Server running on Port 443');
);
// WEBSOCKET
var wsServer = new ws.Server(server);
wsServer.on('connection', socket =>
// on message from client, call function
socket.on('message', message =>
console.log('WS from template <-- ', message);
var wsIn = JSON.parse(message);
eval(app[wsIn.action])(wsIn.param, socket);
);
);
this should work.. I think.. I can't test it because when I do node server.js
, I get a error-msg that Port 443 is already in use.
Error: listen EADDRINUSE: address already in use :::443
now I am really confused :( .. how would one get this managed?
node.js ubuntu ssl tomcat https
add a comment |
I have the following achitecture:
1) Tomcat-Server running on Port 8080
When URL is called, Tomcat delivers a login-page and handles the login.
2) On successfull login, Tomcat delivers a iframe with NodeJs-app in it, which runs on the same machine but on Port 3000
now I need to make this reachable with HTTPS, but I have a serious understanding problem. I already got the key/cert installed and Tomcat is reachable via modjk .. until here it is working fine.
my nodejs-app looks like this:
var http = require('http');
var https = require('https');
var fs = require('fs');
var app = require('./app');
var ws = require('ws');
var config = require('./config/config');
var cfg = config.getCfg('host');
var httpsOptions =
key: fs.readFileSync('ssl/mycert.com.key'),
cert: fs.readFileSync('ssl/mycert.com.crt')
;
// if called with HTTP
if(req.connection.encrypted == 'undefined')
var server = http.createServer(app.handleRequest).listen(cfg.nodePort, function ()
console.log('Server running on Port ' + cfg.nodePort);
);
// if called with HTTPS
else
var server = https.createServer(httpsOptions, app.handleRequest).listen(443, function ()
console.log('Server running on Port 443');
);
// WEBSOCKET
var wsServer = new ws.Server(server);
wsServer.on('connection', socket =>
// on message from client, call function
socket.on('message', message =>
console.log('WS from template <-- ', message);
var wsIn = JSON.parse(message);
eval(app[wsIn.action])(wsIn.param, socket);
);
);
this should work.. I think.. I can't test it because when I do node server.js
, I get a error-msg that Port 443 is already in use.
Error: listen EADDRINUSE: address already in use :::443
now I am really confused :( .. how would one get this managed?
node.js ubuntu ssl tomcat https
I have the following achitecture:
1) Tomcat-Server running on Port 8080
When URL is called, Tomcat delivers a login-page and handles the login.
2) On successfull login, Tomcat delivers a iframe with NodeJs-app in it, which runs on the same machine but on Port 3000
now I need to make this reachable with HTTPS, but I have a serious understanding problem. I already got the key/cert installed and Tomcat is reachable via modjk .. until here it is working fine.
my nodejs-app looks like this:
var http = require('http');
var https = require('https');
var fs = require('fs');
var app = require('./app');
var ws = require('ws');
var config = require('./config/config');
var cfg = config.getCfg('host');
var httpsOptions =
key: fs.readFileSync('ssl/mycert.com.key'),
cert: fs.readFileSync('ssl/mycert.com.crt')
;
// if called with HTTP
if(req.connection.encrypted == 'undefined')
var server = http.createServer(app.handleRequest).listen(cfg.nodePort, function ()
console.log('Server running on Port ' + cfg.nodePort);
);
// if called with HTTPS
else
var server = https.createServer(httpsOptions, app.handleRequest).listen(443, function ()
console.log('Server running on Port 443');
);
// WEBSOCKET
var wsServer = new ws.Server(server);
wsServer.on('connection', socket =>
// on message from client, call function
socket.on('message', message =>
console.log('WS from template <-- ', message);
var wsIn = JSON.parse(message);
eval(app[wsIn.action])(wsIn.param, socket);
);
);
this should work.. I think.. I can't test it because when I do node server.js
, I get a error-msg that Port 443 is already in use.
Error: listen EADDRINUSE: address already in use :::443
now I am really confused :( .. how would one get this managed?
node.js ubuntu ssl tomcat https
node.js ubuntu ssl tomcat https
edited Mar 21 at 23:04
CaptnHirni
asked Mar 21 at 22:03
CaptnHirniCaptnHirni
73
73
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289945%2ftomcat-iframe-nodejs-ssl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289945%2ftomcat-iframe-nodejs-ssl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown