# On the remote machine (10.0.0.15)
from http.server import HTTPServer, SimpleHTTPRequestHandler
import os

# Change to the directory containing your tile files
#os.chdir('/path/to/your/tiles')

# Start HTTP server
httpd = HTTPServer(('0.0.0.0', 8080), SimpleHTTPRequestHandler)
print("Server started at http://0.0.0.0:8080")
httpd.serve_forever()
