centos7安装apache和php简介

环境:
centos 7

一、配置环境可以使用yum上网
(1)修改DNS服务器 保证可用
/etc/resolv.conf
nameserver 114.114.114.114
(2)配置yum源

二、安装apache
1.安装apache
yum install -y httpd

apachectl start
通过下面方式即可访问默认首页
http://A.B.C.D/

2.启用https
yum  install -y mod_ssl

三、安装php
yum install -y php

三、配置http:
1.WEB根路径设置
/etc/httpd/conf/httpd.conf  默认即可
ocumentRoot "/var/www/html"

2. https服务启用
vim /etc/httpd/conf.d/ssl.conf
DocumentRoot "/var/www/html"
ServerName aaa.xxx.com:443
SSLCertificateFile ---可以使用默认
SSLCertificateKeyFile ---可以使用默认

3.把页面 .html文件或者.php放在/var/www/html 子文件夹中 即可通过web直接访问
测试方法如下
https://localhost/index.html
wget --no-check-certificate https://localhost/api/test.php

注意事项:
1.apache和nginx是互斥的,如果环境部署另外一个应用 需要stop 后再start另外一个应用
2.如果访问网络有问题可以关闭防火墙、关闭selinux
systemctl status firewalld
systemctl stop firewalld

你可能感兴趣的:(linux,工具)