我刚刚在 Ubuntu 14 LTS 上使用 Apache 安装了 nagios,我通过 example.com/nagios3 访问该网站,但是我想使用虚拟主机来访问 nagios,例如 nagios.example.com。最好的方法是什么?
答案1
假设
- 标准 Apache2 服务器从 Ubuntu 存储库安装,并且未对默认安装进行任何更改
- Nagios 默认安装在 /var/www/ 文件夹中,文件夹名称为 nagios3
- Nagios.example.com 解析为有效 IP 地址,与 nagios 服务器相同
将 nagios 用作 nagios.example.com 的步骤 - 通过 SSH 进入服务器并运行以下命令
1. cd /etc/apache2/sites-available
2. sudo cp default nagios.example.com
3. sudo nano nagios.example.com
4. 它应该看起来像这样 - 不要复制粘贴此代码。只需添加我在第 4、5、6 和 11 行提到的条目即可
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
ServerName nagios.example.com # Add this line
ServerAlias nagios # Add this line
DocumentRoot /var/www/nagios3 # Add nagios3 at the end of this line
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/nagios3/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
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>
- ^O(用于保存文件)
- ^X(退出 nano 编辑器)
- sudo a2ensite nagios.example.com(用于启用虚拟主机)
- sudo 服务 apache2 重启
- 打开浏览器并输入http://nagios.example.com您应该能够看到 nagios 登录页面(确保您用于访问 nagios 的机器可以解析 nagios.example.com - 如果您无法在本地 hosts 文件中输入条目)
希望这能有所
帮助