-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use port other than 80? #3
Comments
Sure. Just set up RMPORT env variable as you want. Eldar Djafarov sr. Web Developer in Luxoft JS Maniac On Sun, Jun 3, 2012 at 10:02 PM, Janez Urevc <
|
Ubuntu 12.04. THX. I'll try that. |
Hm... Does not help. I still get: info - socket.io started |
are you setting it up like |
Just like this. Will this set the remote's port or webserver's port? I am currently running apache on 80 and I'd like to run remote on 8081. |
It should set up both. sr. Web Developer in Luxoft JS Maniac On Mon, Jun 4, 2012 at 9:26 AM, Janez Urevc <
|
Great. Thanks! |
Now I managed to start remote-impress on port 8899. It starts fine and displays it's welcome page. However, when I add
loading of remote fails. It looks like this happens because presentation tries to load remote from port 80
|
I took a look at the code and I managed to make it work. My solution is hardcoded, but it still points out where is the problem. diff --git a/remote.js b/remote.js
index 91a5282..8c0adc0 100755
--- a/remote.js
+++ b/remote.js
@@ -7,7 +7,7 @@ var events = require('events').EventEmitter;
var ejs = require('ejs');
var fs = require('fs');
var observer = new events();
-var host = process.env.RMHOST;
+var host = process.env.RMHOST + ':8899';
var remotes = {};
var getIp = require('./getIP.js').getIP; I am not fammiliar with node.js at all, so excuse me if I totally missed the point. |
I agree that is stupid. I need to change the code:) and write some more docs. |
Oh, yes. I am so stupid :) No problem. It is a great tool. I will use it a lot. Would it be possible to control more slideshows at once? Presenter would open it's presentation and give people link, that would attach their presentations to the same remote. That would be really useful for sessions beeing streamed over internet. |
Hi,
I'd like to thank you for this great tool first! It is awesome!!
Is it possible to use remote-impress on a port different than 80? I have apache running on 80 and I'd like to run remote-impress on some other port. This would allow me to run presentation and remote on same computer.
Is that possible?
JAnez
The text was updated successfully, but these errors were encountered: