Miniwebserver: Unterschied zwischen den Versionen

Aus C3D2
Zur Navigation springen Zur Suche springen
(This page must use the Rübÿ Spëëd Mëtäl Cödïng template!!!111)
 
(2 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
[[Category:Ruby]] [[Category:Python]]
== Python2 ==
=Python=
<source lang="bash">
==beginner version==
python -m SimpleHTTPServer 8888
<source lang="python">
#!/usr/bin/env python
import sys
import os
from SocketServer import ThreadingMixIn
from BaseHTTPServer import HTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
class ThreadingHTTPServer(ThreadingMixIn, HTTPServer):
    pass
if len(sys.argv) != 3:
    print "Usage: %s <port> <dir>" % (sys.argv[0],)
    sys.exit()
address = ('', int(sys.argv[1]))
server = ThreadedHTTPServer(address, SimpleHTTPRequestHandler)
os.chdir(sys.argv[2])
try:
    server.serve_forever()
except KeyboardInterrupt:
    pass
</source>
</source>
==advanced version==
 
<source lang="python">
== Python3 ==
#!/usr/bin/env python
<source lang="bash">
import sys
python3 -m http.server 8888
from twisted.python import log
from twisted.internet import reactor
from twisted.web import server, static
if len(sys.argv) != 3:
    print "Usage: %s <port> <dir>" % (sys.argv[0],)
    sys.exit()
root = static.File(sys.argv[2])
site = server.Site(root)
reactor.listenTCP(int(sys.argv[1]), site)
log.startLogging(sys.stderr)
reactor.run()
</source>
</source>
==guru version==
 
=== guru version ===
<source lang="bash">
<source lang="bash">
twistd -n web --path $path --port $port
twistd -n web --path $path --port $port
</source>
</source>
=Ruby=
 
==äđëqüäŧë==
== Ruby ==
 
=== äđëqüäŧë ===
<source lang="ruby">
<source lang="ruby">
#!/usr/local/bin/ruby
#!/usr/local/bin/ruby
Zeile 59: Zeile 32:
s.start
s.start
</source>
</source>
==gürü==
 
== gürü ==
<source lang="bash">
<source lang="bash">
ruby -rwebrick -e 'WEBrick::HTTPServer.new(:Port=>8080,:DocumentRoot=>"/tmp").start'
ruby -rwebrick -e 'WEBrick::HTTPServer.new(:Port=>8080,:DocumentRoot=>"/tmp").start'
</source>
</source>


== Ebenfalls ==
* https://gist.github.com/willurd/5720255


{{Rübÿ Spëëd Mëtäl Cödïng}}


{{Rübÿ Spëëd Mëtäl Cödïng}}
[[Category:Python]]
[[Category:Ruby]]

Aktuelle Version vom 27. Januar 2017, 13:41 Uhr

Python2

python -m SimpleHTTPServer 8888

Python3

python3 -m http.server 8888

guru version

twistd -n web --path $path --port $port

Ruby

äđëqüäŧë

#!/usr/local/bin/ruby
require 'webrick'
include WEBrick
if ARGV.size != 2
  puts "Usage: #{$0} <port> <dir>"
  exit
end
s = HTTPServer.new(
  :Port            => ARGV[0].to_i,
  :DocumentRoot    => ARGV[1]
)
trap("INT"){ s.shutdown }
s.start

gürü

ruby -rwebrick -e 'WEBrick::HTTPServer.new(:Port=>8080,:DocumentRoot=>"/tmp").start'

Ebenfalls

Rübÿ Spëëd Mëtäl Cödïng
Coders: Astro | Conny | Sven