Linux学习笔记——Apache的安装与配置
阿里云镜像站:https://developer.aliyun.com/mirror/
查看yum源:ls /etc/yum.repos.d/
安装阿里云的epel镜像:
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
查看是否已安装阿帕奇:rpm -qa | grep httpd
安装阿帕奇:yum install -y httpd httpd-*
删除文件中的#号:sed -i '/#/d' httpd.conf
删除文件中的空格:sed -i '/^$/d' httpd.conf
创建多个网站:(在/etc/httpd/conf.d/目录下创建后缀为.conf的文件)
在/etc/httpd/conf/httpd.conf中添加
Listen 80
Listen 8080
<VirtualHost *:80>
ServerAdmin root@localhost
ServerName localhost:80
DocumentRoot “/var/www/html”
<Directory “/var/www/html”>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
<VirtualHost *:8080>
ServerAdmin root@localhost
ServerName localhost:8080
DocumentRoot “/var/www/html1”
<Directory “/var/www/html1”>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
本文地址:https://blog.csdn.net/qq_41679358/article/details/107344133
推荐阅读
-
linux下apache、mysql、php安装配置详细笔记
-
linux 学习第十四天(Apache安装、基于ip、基于域名、基于端口配置)
-
Windows和Linux中php代码调试工具Xdebug的安装与配置详解
-
archLinux 学习笔记--mlocate的安装与使用
-
Linux计划任务Crontab学习笔记(2):基本组成与配置
-
Windows Apache2.2.11及Php5.2.9-1的安装与配置方法
-
linux rsync的安装与配置
-
基于Linux下Nagios的安装与配置说明介绍[图]
-
lanmp(Linux Apache Nginx Mysql Php) 的安装配置
-
linux时间同步ntp服务的安装与配置