apache服務器顯示md文件
阿新 • • 發佈:2018-05-18
tor automake -m git 源碼 安裝環境 info 分享 apache2
安裝環境 ubuntu16.04 64位
下載源碼
git clone https://github.com/hamano/apache-mod-markdown.git
安裝依賴
apt-get install build-essential libtool automake autoconf
apt-get install libmarkdown2-dev apache2-dev
編譯安裝
autoreconf -f -i
./configure --with-apxs=/usr/bin/apxs2 --with-discount=/usr
make
sudo make install
賦予so權限
sudo chmod 644 /usr/lib/apache2/modules/mod_markdown.so
修改apache配置文件
sudo vim /etc/apache2/apache2.conf
添加以下數據
LoadModule markdown_module /usr/lib/apache2/modules/mod_markdown.so
<Location />
AddHandler markdown .md
# If you want to use stylesheet.
MarkdownCss style.css
</Location>
重啟apache
sudo systemctl restart apache2
最終效果
apache服務器顯示md文件