hosting
1
Name:
Anonymous
2012-09-20 4:33
how can I host from MY IP adress? Like that bbn that was posted here a few weeks ago. It wasn't at local host and it wasn't at a real .com, the url was like 123.434.255.5521.55 and other people here could post on it.
w
2
Name:
Anonymous
2012-09-20 4:45
You're not qualified to host ANYTHING, buddy.
3
Name:
Anonymous
2012-09-20 5:24
Get the fuck out of here, anon
4
Name:
Anonymous
2012-09-20 7:31
python -m SimpleHTTPServer 8080
goto this address
ifconfig wlan0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1:8080}'
substiute wlan0 for whatever you find in ip addr | sed '/^[0-9]/!d;s/: <.*$//'
5
Name:
Anonymous
2012-09-20 7:37
> php -S localhost:8080
6
Name:
Anonymous
2012-09-20 7:42
>>4
actually just use this
ip addr | grep 'inet ' | awk '{print $2:"8080"}'
7
Name:
Anonymous
2012-09-20 7:43
{ echo -ne "HTTP/1.0 200 OK\r\n\r\n"; cat some.file; } | nc -l -p 8080
Runs once. Don't waste it.
8
Name:
Anonymous
2012-09-20 13:01
I remember that guy who wrote a progreader in bash.