两种Linux系统下配置路由信息服务器的方法
作者:网络转载 发布时间:[ 2013/6/7 10:38:47 ] 推荐标签:
我们需要将它修改为如下内容:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
#DocumentRoot /var/www
DocumentRoot /srv/tftp
<Directory />
Options FollowSymLinks Indexes
AllowOverride All
<limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
</Directory>
#<Directory /var/www/>
#<Directory /var/www/>
#Options Indexes FollowSymLinks MultiViews
#AllowOverride None
#Order allow,deny
#allow from all
#</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 ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
使用vi命令编辑/srv/tftp/.htaccess文件,命令模式如下:
root@AkBirdofpreyWorkStation:/# vi /srv/tftp/.htaccess
文件内容如下:
AuthUserFile /etc/secure.user ##用户帐号密码文件名
AuthName akcwdCA 用户登录认证信息提示
AuthType Basic
<Limit GET>
require valid-user
</Limit>
使用htpasswd -c /etc/secure.user建立用户密码文件,命令模式如下:
root@AkBirdofpreyWorkStation:/# htpasswd -c /etc/secure.user user1
程序会提示你输入两次用户的口令,然后用户密码文件已经创建,user1这个用户也同时创建完成了。
使用命令/etc/init.d/apache2 restart重启apache服务器,命令模式如下:
root@AkBirdofpreyWorkStation:/# /etc/init.d/apache2 restart
[....] Restarting web server: apache2apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.1.253 for ServerName
... waiting .apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.1.253 for ServerName
. ok
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11