Linux教程

中职技能大赛-linux-httpd

本文主要是介绍中职技能大赛-linux-httpd,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

加端口

如果要使用除443和80 端口外需要在全局模式里加入listen *

Listen 8080 //例如8080

虚拟目录

:553行,或者/Alias

Alias /test "/yum" //定义虚拟目录“/test”,物理路径为“/yum”!

密码认证

1./Alias后找到下面部分,复制到要加密的虚拟机下面

<Directory "/var/www/icons">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>

2.修改为

<Directory "/var/www/icons">
Options Indexes MultiViews FollowSymLinks
AllowOverride authconfig //这部分
Order allow,deny
Allow from all
</Directory>

  1. 创建密码文本(passwd 是输出的文本)

    [root@localhost conf]# htpasswd -c passwd tonlx //第一次加-c

    [root@localhost conf]# htpasswd passwd tonlx2

ssl

这篇关于中职技能大赛-linux-httpd的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!