# SimpleHTTP **Repository Path**: alexbeng/SimpleHTTP ## Basic Information - **Project Name**: SimpleHTTP - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-23 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Very Simple HTTP Server using Winsock * Listens on port `80` * Responds with received HTTP headers * Sometimes crashes 😕 ![Preview in browser](preview.gif) # How to build ## On Windows Use provided Qt Creator project file. ## On Linux It'd probably be easier to rewrite it to BSD sockets, but in current version it can be cross-compiled for Windows and then run with Wine: ``` $ i686-w64-mingw32-g++ *.cpp *.h -o server -static -static-libgcc -static-libstdc++ -lws2_32 $ sudo wine server.exe ```