Connection Test Page

A simple page to verify your server connection is working

Checking connection...

Client Information

Browser:

Operating System:

Screen Resolution:

User Agent:

Server Information

Page Loaded:

Current URL:

Protocol:

Host:

How to Run a Python Server

You can start a simple Python HTTP server with one of these commands:

                # Python 3
                python -m http.server 8000

                # Python 2
                python -m SimpleHTTPServer 8000
            

Then access this page at: http://localhost:8000