# 帮助文档
1. 源码 https://github.com/apache/httpd/tree/trunk
1. 安装说明 https://httpd.apache.org/docs/2.4/install.html
1. 所有版本https://github.com/apache/httpd/tags

git clone https://github.com/apache/httpd.git apache2
cd apache2
git clone https://github.com/apache/apr.git srclib/apr
git clone https://github.com/apache/apr-util.git srclib/apr-util
 ./buildconf
./configure --prefix=/opt/apache2 --with-port=90 
make
make install
/opt/apache2/bin/apachectl -k stop
/opt/apache2/bin/apachectl -k start
curl localhost:90 -v