14:40:12.704
200 HEAD
/
418ms overall
0ms on queries
0 queries
Request Headers
X-FORWARDED-FOR 143.244.47.80
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
USER-AGENT Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3
ACCEPT */*
ACCEPT-ENCODING gzip, deflate, br, zstd
Response Headers
CONTENT-TYPE text/html; charset=utf-8
Raw Response Body
The raw response body is 20262 characters long and hence is too big to show here. Click here to view the raw response body.
Curl
Curl is a command-line utility for transferring data from servers. Paste the following into a terminal to repeat this request via command line.
curl -X HEAD   https://x01-backend.mobischool.mw/
Django Test Client
The following is working python code that makes use of the Django test client. It can be used to replicate this request from within a Django unit test, or simply as standalone Python.
from django.test import Client
c = Client()
response = c.head(path='/',
                  data='')