当前位置 博文首页 > httpd + php 构建SSL MINI WEB_积水成渊:mini

    httpd + php 构建SSL MINI WEB_积水成渊:mini

    作者:[db:作者] 时间:2021-07-29 15:38

    一、简介

    目的:构建小型WEB站,具备SSL,解析PHP脚本(适用嵌入式环境)。

    mini_httpd is a small HTTP server. Its performance is not great, but for low or medium traffic sites it's quite adequate. It implements all the basic features of an HTTP server, including:

    GET, HEAD, and POST methods.
    CGI.
    Basic authentication.
    Security against ".." filename snooping.
    The common MIME types.
    Trailing-slash redirection.
    index.html, index.htm, index.cgi
    Directory listings.
    Multihoming / virtual hosting.
    Standard logging.
    Custom error pages.

    It can also be configured to do SSL/HTTPS and IPv6.

    官网:http://acme.com/software/mini_httpd/

    使用版本:mini_httpd_1.19 b修改版:http://www.hochstrasser.org/wiki/files/mini_httpd-1.19bhoc.tar.gz

    php:php.4.4.2

    二、步骤说明

    A、解压 php.4.4.2


    [python] view plain copy print ?cs
    下一篇:没有了