Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Ruben Safir
On 1/21/19 3:07 PM, Osman Zakir wrote: > I can see the app on localhost on either port 8000 or port 8081. What am I > doing wrong? > fix your network then. -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
I can see the app on localhost on either port 8000 or port 8081. What am I doing wrong?

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Ruben Safir
On Mon, Jan 21, 2019 at 04:19:00PM +, Osman Zakir wrote: > Wait, so it's fine if I use my internal IP address? The app will be > available on my public IP address in that case too? you app is being called by apache so it doesn't matter were it is as long as apache can reach it.

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Ruben Safir
On Mon, Jan 21, 2019 at 04:27:38PM +, Osman Zakir wrote: > This is what I have in the conf file at the bottom: > " > "E:/programming/visual_studio_2017/Projects/currency_converter/x64/Release"> > Options All??? > Options Indexes FollowSymLinks??? > AllowOverride None??? >

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
This is what I have in the conf file at the bottom: " Options All​ Options Indexes FollowSymLinks​ AllowOverride None​ Require all granted​ ​ ​ ​ ServerAdmin osmanzaki...@hotmail.com​ ServerName dragonosman.dynu.net​ ServerAlias www.dragonosman.dynu.net​ ErrorLog

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
On Mon, Jan 21, 2019 at 11:19 AM Osman Zakir wrote: > > Wait, so it's fine if I use my internal IP address? The app will be > available on my public IP address in that case too? In ProxyPass, assuming your reverse proxy and backend are on the same internal network, yes. As long as the reverse

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
Wait, so it's fine if I use my internal IP address? The app will be available on my public IP address in that case too?

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
On Mon, Jan 21, 2019 at 11:12 AM Osman Zakir wrote: > > My server is listening on http://dragonosman.dynu.net:5501/. Should I put > that there then? Also, should the ProxyPass directive go inside the > VirtualHost tags or outside? Yes. But normally you would use an internal LAN address not a

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
My server is listening on http://dragonosman.dynu.net:5501/. Should I put that there then? Also, should the ProxyPass directive go inside the VirtualHost tags or outside?

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
On Mon, Jan 21, 2019 at 10:56 AM Osman Zakir wrote: > > The httpd.conf file is attached to this email. The VirtualHost and ProxyPass > stuff is at the bottom. Please let me know what I messed up now, if anything > at all. And if there's something wrong, help me out with that. > > The first

[users@httpd] Windows Apache httpd 2.4.38 GA available

2019-01-21 Thread Steffen
Apache httpd 2.4.38 GA available, see http://www.apachelounge.com/viewforum.php?f=1 Enjoy, Steffen - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail:

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
The httpd.conf file is attached to this email. The VirtualHost and ProxyPass stuff is at the bottom. Please let me know what I messed up now, if anything at all. And if there's something wrong, help me out with that. The first parameter to the ProxyPass directive for "/" is currently the

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
On Mon, Jan 21, 2019 at 10:25 AM Osman Zakir wrote: > > I need to know if I've set up the reverse proxy configuration correctly in > the conf file, and also how to fix it I did something wrong. This has nothing to do with port forwarding in your router. "If" you've set it up correctly,

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
I need to know if I've set up the reverse proxy configuration correctly in the conf file, and also how to fix it I did something wrong. And I also need to know how to correctly visit the app in the browser after I've set it up correctly and am forwarding the port that Apache is listening (if

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
On Mon, Jan 21, 2019 at 10:13 AM Osman Zakir wrote: > > I don't know if it's the same as what you're talking about, but I can choose > a range for an internal port and for external port (there are External Port > Start and External Port End, and Internal Port Start and Internal Port End), >

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Eric Covener
> Because if so, I'll need to choose a different port because I'm having it > listen on port 8080 which is being blocked by the ISP. Unless your router allows you to forward port A to port B in the UI, you'll have to listen on a port your ISP isn't filtering.

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Osman Zakir
I can't use port 80 or 433 for my external port because the router's using those ports. 8080 and 8443 are also being blocked by ISP. So I had to use 5501 and forward that. I'll take away the forwarding rule for port 5501 if I can get the reverse proxy to work, though. That being said, just

Re: [users@httpd] Port Forwarding Help?

2019-01-21 Thread Yehuda Katz
If your ISP blocks port 80 and port 443, there is no way for you to host the site without a port number. If you can run a server on those ports, HTTPD would listen there and reverse proxy to the internal port the app is running on (5501?). You would not want to forward 5501 through the router