我正在尝试为在Cent OS 7上运行的闪亮服务器设置apache基本身份验证
目前我想出了如何设置对本教程的基本html文件的身份验证 https://www.server-world.info/en/note?os=CentOS_7&p=httpd&f=8
当试图将配置文件中的位置目录更改为/ srv / shiny-server时,Howerver无效,这里是我所指的配置文件
[root@www ~]# vi /etc/httpd/conf.d/auth_basic.conf
# create new
<Directory /var/www/html/auth-basic>
AuthType Basic
AuthName "Basic Authentication"
AuthUserFile /etc/httpd/conf/.htpasswd
require valid-user
</Directory>
有没有人有关于如何为闪亮服务器工作的想法?
由于