Apache2.4 新virtualhost

创建配置文件

/etc/apache2/sites-available# sudo nano mysite.conf
<VirtualHost *:8000>
  #ServerName hello.djangoserver
  DocumentRoot /www2
  <Directory /www2>
    #DirectoryIndex testMain.html
    Options Indexes FollowSymLinks
    Require all granted
  </Directory>
</VirtualHost>

启用配置

cd /etc/apache2/sites-available
sudo a2ensite mysite
sudo service apache2 reload

监听端口

cd /etc/apache2
sudo nano ports.conf
Listen 8000
时间: 2024-10-06 11:57:20

Apache2.4 新virtualhost的相关文章

CentOS下编译安装Apache2(新)

官网下载apache,apr, apr-util,pcre httpd-2.4.16.tar.gz http://httpd.apache.org/download.cgi#apache24 apr-1.5.2.tar.gz  http://apr.apache.org/download.cgi apr-util-1.5.4.tar.gz pcre-8.37.tar.gz  http://www.pcre.org/ 1 yum安装gcc yum -y install gcc 2 源码安装apr,

apache2.4:apache的安装及其新特性

小生博客:http://xsboke.blog.51cto.com 小生 Q Q:1770058260 -------谢谢您的参考,如有疑问,欢迎交流 一. Apache2.4新特性 1. 新增模块 Mod_proxy_fcgi:提供fcgi代理 Mod_ratelimit:限制用户带宽 Mod_request:过滤客户机请求 Mod_remoteip:匹配客户端的IP 2. 新特性 Mpm(工作模式):支持工作模式在apache运行时更改 但是要开启这种特性,在编译安装要启用这三种功能:--e

关掉apache2服务器日志文件

磁盘空间突然满了,才发现是这个东西占空间.11个G的空间 修改:/etc/apache2/size-available/default <VirtualHost *:80>ServerName example.comDocumentRoot /var/www/# ErrorLog /var/log/apache2/error.log# CustomLog /var/log/apache2/access.log combinedErrorLog offCustomLog /dev/null co

linux -- Ubuntu下安装和配置Apache2

在Ubuntu中安装apache 安装指令:sudo apt-get install apache2 启动和停止apache的文件是:/etc/init.d/apache2 启动命令:sudo apache2ctl -k start (或 server apache2 start) 停止命令:sudo apache2ctl -k stop (或 server apache2 stop) 重新启动:sudo apache2ctl -k restart  (或 server apache2 rest

Apache的配置httpd.conf文件配置

(1) 基本配置: ServerRoot "/mnt/software/apache2" #你的apache软件安装的位置.其它指定的目录如果没有指定绝对路径,则目录是相对于该目录. PidFile logs/httpd.pid #第一个httpd进程(所有其他进程的父进程)的进程号文件位置. Listen 80 #服务器监听的端口号. ServerName www.clusting.com:80 #主站点名称(网站的主机名). ServerAdmin [email protected

Apache的配置详解,最好的Apache配置文档

http://blog.csdn.net/apple_llb/article/details/50253889 Apache的配置由httpd.conf文件配置,因此下面的配置指令都是在httpd.conf文件中修改. 主站点的配置(基本配置) (1) 基本配置: ServerRoot "/mnt/software/apache2" #你的apache软件安装的位置.其它指定的目录如果没有指定绝对路径,则目录是相对于该目录. PidFile logs/httpd.pid #第一个htt

lamp架构

一.Apache 进程模式说明 在linux中,我们可以用httpd-l 查看安装的模块是prefork模式还是worker模式 [[email protected] ~]# /usl/local/apache/bin/apachectl  -l|egrep "worker|prefoker" worker.c [[email protected] ~]# 或者 [[email protected] ~]# /usr/local/apache/bin/apachectl  -l |se

unbuntu apahce 2 设置 多域名

1.找到apache2 的设置路径 默认的apache的路径为/etc/apache2/ 2. 修改httpd.conf 本文192.168.0.1 为自己的服务器的ip,下面一样的意思 ServerName 192,168.0.1:80NameVirtualHost 192,168.0.1.166 3. 修改 /etc/apache2/sites-available/default文件 此文件为第一个网站的域名绑定信息 <VirtualHost 192.168.0.1> Servername

LAMP 架构深度优化记录

1.Apache worker/prefwork模式说明 在linux中,我们可以用httpd-l 查看安装的模块是prefork模式还是worker模式 [[email protected] ~]# /application/apache/bin/apachectl  -l|egrep "worker|prefoker" worker.c [[email protected] ~]# 或者 [[email protected] ~]# /application/apache/bin/