i am running easyphp server at my local server as well as LAN
how to access webpage from local server to internet
working at Local address 127.0.0.1/webpage
working at LAN Address 192.168.0.236:8081/webpage
i have a static ip also
plz tell me what the necessary chacges i have to do in httpd.txt
localeasyphpserveroninternet
Related
I want to see my website preview from my phone.
I just changed this setting and it was working fine.
It was working fine when my phone and computer are connected to same modem.
But when i connected another internet from my phone i cant access to live server
I am using 5500 port there is nothing running,
i gave access to 5500 port from firewall.
if you are in local network you write pc local ip in the address, if you are in another network, you write the public ip address of the pc + port.
The problem is i have an self hosted server (Obico its an thing for 3d printing) and i can use my local ip on the host PC so it reach correctly the page but from another PC or device i cant reach the page (i disabled AV and firewall for testings). I can still ping form host to client but not client to host.
Any solutions ?
Thank you.
I am using OpenMediaVault for NAS management installed on Raspberry Pi. I am able to access my shared drive on my network. I would like to access it from the internet. I have static IP connection and have done the port forwarding. I am able to access the OpenMediaVault configuration page from other network, but cannot access the shared drive.
Please help!
Thanks in advance.
I'm sure there should be multiple ways to do this. But following is how I access my NAS on Raspi from the internet.
Registered a free domain on DuckDNS for Private VPN
Used the domain created in #1 to set up a split tunnel Wireguard VPN server using PiVPN on the RaspberryPi
Set up a split-tunnel VPN profile
Forwarded port 51820 (default port for Wireguard) on the router
Installed Wireguard on my phone and Mac and set the connections
Whenever I'm outside the home network, I just connect to the VPN and I can access my shared folders.
I am running easyphp with apache version 2.4.18 x86 (32-bit) on Windows 10.
On the PC where easyphp is running, I can connect using either localhost or http://computername, but if I try to connect through the local IP address which is http://192.168.0.10, I get a white page without any error message.
And the most strange thing, if I plug an iPhone (USB) with a shared connexion in the PC (the PC gets 2 network connections), then I can access to http://192.168.0.10 through the PC (still the wifi IP local address and not the iPhone local network address).
If I unplug the iPhone, then it fails again to connect to http://192.168.0.10.
Any explanation ?
So it was a firewall problem.
Evene when desactivating the firewall, the web site was not reachable.
I've added manually the
EasyPHP16\eds-binaries\httpserver\apache2418vc11x86x160927105506\bin\eds-httpserver.exe
in the Windows firewall rules, and it worked.
The two strange things is that disabling the firewall did not arrange anything, and lanching the webserver did not pop up the firewall dialog.
Hope this helps.
This might be an easy question, but I am not familiar with these stuff.
Basically I have a server pc that I connect through my pc, and there is this webpage http://localhost:8080/. I can only access this address when I log in my server pc. Now I wanted to know how I can access this webpage in my pc (without having to remotely connect to my server pc). Any help will be appreciated.
you can access to your website (if your web server accept external requests) by type this code to your browser address bar from your pc:
<server ip>:8080
replace
<server ip>
with your server ip like this:
192.168.1.10:8080
Okay, so quick networking 101, localhost is a hostname that maps to the IP address of of 127.0.0.1 and these point to the local machine, i.e. your server.
In order to access that page within the same network, you'll need an external IP address. So say you're in the network of 192.168.1.0/24 and the server is on IP address 192.168.1.100. So in order to access your stuff from another machine, simply replace localhost with that IP and it should work. If not, you've got firewall issues, and those are another topic.