Quote:
Originally Posted by ad1217
Worked on my Voyage.
For those who want a slightly easier method, you can use create_ap with the "--redirect-to-localhost" option, instead of setting up dns. Example command:
Code:
sudo create_ap mlan0 --redirect-to-localhost -n test
The files can then be hosted with
Code:
python2 -m SimpleHTTPServer
This hosts on port 8000 by default, so navigate to 'a:8000'.
|
I would agree this as the simplest method to host the files. You can host the files over the port 80, and BD suggested, simply by adding 80 as an argument.
Code:
python2 -m SimpleHTTPServer 80