3f898690aa
MiniMiniWeb is my attempt at creating a multithreaded web server in C. Features (and Misfeatures) Written in C Multithreaded (with pthread) Designed for Unix-like systems Supports GET and POST requests Only serves static files No SSL No CGI or anything "dynamic" No Virtual Hosts No Directory Listings (gotten pulled out) No IPv6 PR: 211472 Submitted by: neel@neelc.org Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D9127
21 lines
326 B
Makefile
21 lines
326 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= miniminiweb
|
|
PORTVERSION= 0.0.2
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Minimal, Multithreaded web server in C
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= neelchauhan
|
|
GH_PROJECT= MiniMiniWeb
|
|
|
|
ALL_TARGET= All
|
|
|
|
PLIST_FILES= bin/${GH_PROJECT}
|
|
|
|
.include <bsd.port.mk>
|