对Apache2进行简单配置

Posted huiyichanmian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对Apache2进行简单配置相关的知识,希望对你有一定的参考价值。

Apache2

  1.安装Apache2 

sudo apt-get update

sudo apt-get install apache2

  2.启动服务

sudo  /etc/init.d/apache2 start  # start | restart | stop
或
service apache2 start | restart | stop

  3.配置虚拟站点

  在sites-available目录下配置自己的虚拟站点

cd /etc/apache2/sites-available

  进入sites-avaliable目录后,有两个默认的配置文件

ls

000-default.conf  default-ssl.conf

  对 000-default.conf 进行复制,重命名为自己的域名,但是后缀必须是.conf

cp 000-default.conf  www.91porn.com

  进入自己的的配置文件进行配置

<VirtualHost *:80>
    
ServerName www.91porn.com   #站点域名
  
DocumentRoot /var/www/www.91porn.com   #站点根目录
 
</VirtualHost>

#基本配置,根据需求在此基础上修改

  进入apache2目录下的sites-enabled目录,创建软连接

cd ../sites-enabled

ln -s ../sites-available/www.91porn.com.conf  www.91porn.com.conf

  (更具需求可以修改主配置文件,主配置文件为apache2目录下的apache2.conf)

  重启apache服务,如果不报错就表示配置成功

sudo  /etc/init.d/apache2 start  # start | restart | stop
或
service apache2 start | restart | stop

   配置虚拟站点

cd /var/www/blog

vim index.html #编辑html文件

  在linux下设置域名解析

sudo vim  /etc/hosts

127.0.0.1 www.blog.com

  在windows下设置域名解析

C:WindowsSystem32driversetc 编写hosts文件

IP地址(站点主机名) www.blog.com

 

 

 

 

  

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  



以上是关于对Apache2进行简单配置的主要内容,如果未能解决你的问题,请参考以下文章

配置Apache2 + PHP扩展(Centos6 + httpd)

Apache2.4 企业七简单配置

python使用上下文对代码片段进行计时,非装饰器

使用 C++ 反转句子中的每个单词需要对我的代码片段进行代码优化

VS Code配置snippets代码片段快速生成html模板,提高前端编写效率

apache2.4.33伪静态配置入门教程