How to enable and disable the site
a2ensite 站点名 a2dissite 站点名
Name-based (distinguished by domain name) virtual host
After installing apache, there is a virtual host called default by default. When creating a new virtual host, you can directly copy the configuration file of the default virtual host and modify the configuration parameters of the new virtual host based on it.
#copy /etc/apache2/site-available/default /etc/apache2/site-available/sitename
Test environment
Operating system: Ubuntu Server 12.04 LTS
Test machine address: 10.39.6.59
Test machine domain name: *.example.com
Basic configuration
We all know that if we want to run a single machine When setting multiple domain names or host names on the machine, we will use name-based virtual hosts. So how to set it up? That's what this guide aims to solve. There is the main configuration file apache2.conf for Apache2 in Ubuntu's /etc/apache2/ directory. In this file we can see the following fields:
# Include the virtual host configurations: Include /etc/apache2/sites-enabled/[^.#]*(12.04版本里无[^.#]*)
The meaning of this line indicates that the file contains the file name in the /etc/apache2/sites-enabled/ directory that does not contain the two characters "." or "#" All files. When we listed the files in this directory, we found that there was only one soft link file of 000-default. The actual connection was the default file in the /etc/apache2/sites-available directory. It is not difficult to see that the file name of the file does not contain Does not contain "." or "#". So of course this file must be included in the configuration file apache2.conf. Open the file and find that it is actually a configuration file for a virtual host. However, since the virtual host in the file is *, it is actually a general configuration file. If we want to create a virtual host, then we need to change the file to look like the following:
<VirtualHost *:80> ServerName www.firehare.com ServerAdmin admin@mail.firehare.com DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny Allow from all # This directive allows us to have apache2's default start page # in /apache2-default/, but still have / go to the right place # Commented out for Ubuntu #RedirectMatch ^/$ /apache2-default/ </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> </VirtualHost>
Let’s analyze the setting statements related to the virtual host in the above settings:
`NameVirtualHost :80`: means What we want to do is a name-based virtual host, the listening port is 80.
`
`ServerName www.firehare.com`: Set the domain name of the virtual host, www.firehare.com can be any domain name you registered
`ServerAdmin admin@mail .firehare.com`: Set the email of the network administrator of the virtual host
`DocumentRoot /var/www/`: Set the home directory path of the virtual host
`ErrorLog /var/log/apache2/error.log`: Set The error message of the virtual host
`CustomLog /var/log/apache2/access.log combined`: Set the access information of the virtual host
In this way, we have configured a virtual host www.firehare.com. But since this is the default configuration, after Apache2 restarts, no matter you enter any domain name pointing to this host in the DNS server, you will be directed to the /var/www directory pointed to by the default configuration of www.firehare.com. Unless the domain name is used by other virtual host configurations, for example, we have also configured edunuke.firehare.com to point to this machine and configured the corresponding virtual host. In this case, entering the domain name edunuke.firehare.com will be included in the directory corresponding to the domain name. middle.
Further explanation
In order to explain clearly, let’s add another virtual host site example.com. First, create a file edunuke in the /etc/apache2/sites-available/ directory and edit the file:
<VirtualHost *:80> ServerName edunuke.example.com ServerAdmin edunuke@mail.example.com DocumentRoot "/var/www/edunuke/" ErrorLog "/var/log/apache2/edunuke_errors.log" CustomLog "/var/log/apache2/edunuke_accesses.log" common </VirtualHost>
The specific meaning of the settings is the same It’s similar to the above, so I won’t say more about it. Then run the command:
sudo a2ensite edunuke
In this case, the virtual host site edunuke.example.com has been installed. At this time, you can also find an additional soft link to /etc/apache2/sites-available/edunuke in the /etc/apache2/sites-enabled/ directory. The next step is to restart Apache2 to make the virtual host site run:
sudo /etc/init.d/apache2 restart 这里可以使用reload 重新加载
In this way, if you enter edunuke.example.com on the browser, it will be pointed to the /var/www/edunuke directory, and other input will point to the local machine The domain name will point to the /var/www directory in the default configuration. Friends who are familiar with Apache2 will ask why it is so troublesome. Isn’t it possible to put it in a file? Why use two files? It's actually very simple, because if I want to maintain the edunuke site, I only need to run the command:
sudo a2dissite edunuke sudo /etc/init.d/apache2 restart
. This way I can maintain the edunuke site without affecting the normal operation of other sites.
Advanced configuration
上面谈了一下简单的虚拟主机配置方法。这个基本上能满足我们大部分的需要。但如果要是安装 Zope+Plone 的话,上面的这点设置是远远不够的,由于 Zope+Plone 结构所采用的端口并非是80端口,所以我们还得做端口重定向。为了能够做这个,我们得激活 Rewrite 和 Proxy 两个模块。激活模块很简单,同站点配置目录一样,在 Apache2 中也有两个模块配置目录:mods-available 和 mods-enabled。在 mods-available 目录中的是所有可用的模块,而在 mods-enabled 目录中的则是已被安装到 Apache2 中的模块。由于在 mods-available 目录中已经有了 Rewrite 和 Proxy 模块的配置引导文件,所以只需要简单地将其安装到 Apache2 中即可。使用命令:
sudo a2enmod rewrite sudo a2enmod proxy
然后,添加虚拟主机站点 plone.example.com,同 edunuke 站点创建相似在/etc/apache2/sites-available/ 目录中建立一个文件 plone。显然这个文件名中是没有 "." 或 "#" 这两个字符的了。然后编辑该文件:
<VirtualHost plone.example.com:80> ServerName plone.example.com ServerAdmin plone@mail.example.com ErrorLog "/var/log/apache2/plone_errors.log" CustomLog "/var/log/apache2/plone_accesses.log" common RewriteEngine on RewriteRule ^/(.*) http://127.0.0.1:8081/VirtualHostBase/http/plone.firehare.com:80/plone/VirtualHostRoot/$1 [L,P] <Proxy *> Order Deny,Allow Deny from all Allow from all </Proxy> </VirtualHost>
这样就安装好了 plone.example.com 虚拟主机站点,可以在浏览器中地址栏中输入 http://plone.example.com 就可以重定向到 Zope+Plone 站点去了。

IDLE(集成开发学习环境Integrated Development and Learning Environment)是一个 Python IDE,由 Python 语言本身编写,在 Windows 中通常作为 Python 安装 的一部分而安装。它是初学者的理想选择,使用起来很简单。对于那些正在学习 Python 的人,比如学生,它可以作为一个很好的 IDE 来开始使用。语法高亮、智能识别和自动补全等基本功能是这个 IDE 的一些特点。你可以随时在官方 文档 中了

如何在 Ubuntu 中切换多个 PHP 版本?下面本篇文章给大家介绍一下Ubuntu中切换多个 PHP 版本的方,希望对大家有所帮助!

1.使用快捷键【Ctrl+Alt+T】打开终端命令模式。2.可以通过以下方式重启nginx服务。方法一,在nginx可执行目录sbin下,输入以下命令重启/nginx-sreload#重启方法二,查找当前nginx进程号,然后输入命令:kill-HUP进程号,实现重启nginx服务#ps-ef|grepnginx#查找当前nginx进程号]#kill-TERM132#杀死nginx进程,132为nginx进程号

docker内ubuntu乱码的解决办法:1、通过“locale”查看本地使用的语言环境;2、通过“locale -a”命令查看本地支持的语言环境;3、在“/etc/profile”文件的结尾处添加“export LANG=C.UTF-8”;4、重新加载“source /etc/profile”即可。

ubuntu php无法启动服务的解决办法:1、在php-fpm.conf里面设置错误日志;2、执行“/usr/sbin/php-fpm7.4 --fpm-config /etc/php/fpm/php-fpm.conf”命令;3、修改php的配置文件注释即可。

查找无用的镜像首先,您可以检查当前使用的内核,您可以通过命令获得信息:uname-aa.例如,它在我的桌面上显示为:复制代码代码如下:magc@magc-desktop:~$uname-aLinuxmagc-desktop2.6.24-19-RT#1SMPpremptRTThu8月21日02:08336003UTC2008i686GNU/Linux然后通过查看这台机器上所有内核的列表来决定哪些需要删除:运行命令:复制代码代码如下:dpkg-get-selections|greplinux例如,我

ubuntu没有php-fpm的解决办法:1、通过执行“sudo apt-get”命令添加php的源地址;2、查看有没有php7的包;3、通过“sudo apt-get install”命令安装PHP;4、修改配置监听9000端口来处理nginx的请求;5、通过“sudo service php7.2-fpm start”启动“php7.2-fpm”即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
