├── htdocs ├── demo.html ├── file │ └── hehe.html ├── get.php ├── index.html ├── README ├── color.cgi └── check.cgi ├── httpd ├── README.md ├── Makefile ├── simpleclient.c └── httpd.c /htdocs/demo.html: -------------------------------------------------------------------------------- 1 | 你好 2 | -------------------------------------------------------------------------------- /htdocs/file/hehe.html: -------------------------------------------------------------------------------- 1 | 呵呵 2 | -------------------------------------------------------------------------------- /httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xc9e36/TinyHTTPd/HEAD/httpd -------------------------------------------------------------------------------- /htdocs/get.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php 2 | 2 |
Welcome to J. David's webserver. 5 |