最近自己要折腾下web服务器的事,顺便就记录一些配置过程
先上环境:
先更新下系统
sudo pacman -Syu
安装apache
sudo pacman -S apache
查看apache 是否安装成功
apachectl -v
或者
httpd -v
我的显示如下:
Server version: Apache/2.4.25 (Unix)
Server built: Dec 20 2016 13:02:22
设置开机启动
sudo systemctl enable httpd
sudo systemctl restart httpd
查看apacheh是否在运行
sudo systemctl status httpd
设置apache启动文件
在httpd.conf文件里找到以下信息:
DirectoryIndex index.html
这儿的index.html就是启动文件了,你也可以改成你自己的文件
ps,顺便说下,启动目录也在这个文件里
在该文件里查找DocumentRoot,可看到启动目录
pps,配置文件httpd.conf在哪里呢?
sudo find / -name httpd.conf搜下得之
效果如何?
我在index.html里写了点东西,打开浏览器 输入
如图:
note:
referrence:https://forum.manjaro.org/t/install-apache-mariadb-php-lamp-2016/1243