Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

PKBeam

macrumors regular
Original poster
Jul 24, 2015
230
173
NSW, Australia
Is it possible to host a web server on an AE, or otherwise implement a method that lets me access files on the AE's connected hard drive from any web browser?
 

satcomer

Suspended
Feb 19, 2008
9,115
1,977
The Finger Lakes Region
Is it possible to host a web server on an AE, or otherwise implement a method that lets me access files on the AE's connected hard drive from any web browser?

On less you want to keep your HOME account don't even try doing this. Your ISP will always say a big"NO" to home web severs!

Now if you a business ISP account it is a different story. Do you have a business account or a static IP address?
 

PKBeam

macrumors regular
Original poster
Jul 24, 2015
230
173
NSW, Australia
it's a static IP address.
several people I know host web servers on their PCs on personal connections, and nothing has happened.
 

HenryAZ

macrumors 6502a
Jan 9, 2010
690
143
South Congress AZ
Is it possible to host a web server on an AE, or otherwise implement a method that lets me access files on the AE's connected hard drive from any web browser?
It has been a while since I looked at the AEBS interface, but I don't recall seeing any capability for running a web server on the AEBS itself. What I suspect you would have to do is set up Apache on one of your Macs, where you can see the shared Volume(s) on the AEBS attached drive, and host the web server from the Mac. It is easy enough to set up a Directory on the Apache server that points to the AEBS share. For example, you could have www.example.com go straight to the AEBS Volume, or set up another URL, like aebs.example.com for the same purpose, and reserve the "www" record for an index page that doesn't hint of the AEBS access, just in case someone stumbled onto the www URL.
 

960design

macrumors 68040
Apr 17, 2012
3,795
1,674
Destin, FL
Is it possible to host a web server on an AE, or otherwise implement a method that lets me access files on the AE's connected hard drive from any web browser?
Do you want to run a .local webserver only accessible to those in your office or full web server? Both are possible, but you need a little more than just a router.
As others have said, you should check with your ISP, if you are hosting to the outside. Your completely legit to host internally. You understand that many people in the world do not do the legal thing, sometimes they get caught, sometimes not. It is up to you to weigh the risk vs the penalty of the crime.
 

PKBeam

macrumors regular
Original poster
Jul 24, 2015
230
173
NSW, Australia
just on my LAN.

I already have Xampp set up to host from my PC, but I find it sub-optimal to have to turn it on when I need it and close Skype - so I was wondering if I could do the same from my AE.
 

960design

macrumors 68040
Apr 17, 2012
3,795
1,674
Destin, FL
just on my LAN.

I already have Xampp set up to host from my PC, but I find it sub-optimal to have to turn it on when I need it and close Skype - so I was wondering if I could do the same from my AE.
Change the port to something other than 80. I use MAMP on Macs and Win10 boxes for local web application development. Then you will access your local server at something like: http://pkbeam.local:8888/ or with a little extra configuration http://pkbeam.com:8888/

The AE is does not have a server of any kind to handle the requests. So no, not from the router. Most routers cannot, they all rely on a server connected in one way or the other. You could setup a Rasberry Pi for very little: https://ubuntu-pi-flavour-maker.org/blog/ubuntu-pi-flavours-for-raspberry-pi-3/
 

HenryAZ

macrumors 6502a
Jan 9, 2010
690
143
South Congress AZ
just on my LAN.

I already have Xampp set up to host from my PC, but I find it sub-optimal to have to turn it on when I need it and close Skype - so I was wondering if I could do the same from my AE.
OS X comes with apache already installed. You just need to edit /etc/apache2/httpd.conf to your own configuration. httpd.conf used to come read-only. I just checked mine, and it is writeable, but that may be because I changed it. If its permissions are set to -r--r--r--, just do this before you use the text editor of your choice to edit it, :
Code:
sudo chmod 644 /private/etc/apache2/httpd.conf

With 10.11, you will need to disable SIP temporarily, to be able to load the apache server so it runs on boot with this command:
Code:
sudo launchctl load -w /System/Library/LaunchDaemons/org.apache.httpd.plist

Once it is loaded and running, you can re-enable SIP, and you can make changes to the configuration and control the server (restart, etc), like this:
Code:
sudo apachectl stop|start|restart

The Apache project web site has excellent documentation, if you are rusty or need some help editing httpd.conf. Apache HTTP Server Version 2.4 Documentation
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.